function movepic(img_name,img_src) 
	{
		document.images[img_name].src=img_src;
	}
	
function toggle(what){
	id = document.getElementById(what);
	 if(id.style.display == "none") {			
	   id.style.display = "block";			
	 } else {			
	   id.style.display = "none";
	}
 }
 
 top.foobar =function(title, href) {
   GB_hide();
   GB_showFullScreen(title,href);
   return false;

} 
