function showPhoto(photo) {
	window.open('iphoto.php?photo='+photo,'','Toolbar=0, Location=0, Visible=0, Directories=0, Status=0, Menubar=0, Scrollbars=0, Resizable=no, Width=50, Height=50, left=200, top=50');
}


function getBodyScrollTop()
{
  return self.pageYOffset || (document.documentElement && document.documentElement.scrollTop) || (document.body && document.body.scrollTop);
}

function showpic(picname){
var mLy=document.all.mLayer;
var pic="photos/"+picname
 imgSrc.src=pic;
 mLy.style.left=event.clientX;
	mLy.style.top=event.clientY+10+getBodyScrollTop();
 mLy.style.visibility="visible";
 //alert (getBodyScrollTop());
// alert(pic)
return true
}

function hidepic(){
var mLy=document.all.mLayer;

 mLy.style.visibility="hidden"
 return true;
}



