function Large(obj){
    var imgbox=document.getElementById("imgbox");
    imgbox.style.display='block';
	imgbox.innerHTML='<center><img src="'+obj.name+'" style="margin-top:60px; border:1px solid #333333" /></center>';
}
function Out(){
    document.getElementById("imgbox").style.display='none';
}



function addBookmark(title,url) {
 if (window.sidebar) { 
window.sidebar.addPanel(title, url,""); 
} else if( document.all ) {
window.external.AddFavorite( url, title);
} else if( window.opera && window.print ) {
return true;
}}