var sw = screen.width/2;
var sh = screen.height/2;
var wd = 366;
var hg = 541;

function OpenPhoto(photo)
{
    w = window.open ("photos/"+photo+"","SanClean","width="+wd+", height="+hg+", top=" + (sh-hg/2) + ", left=" + (sw-wd/2) + ",status=0, toolbar=0, menubar=0, location=0, resizable=0, scrollbars=0");
    w.focus;
}

function OnLoad(){
		
   var o = document.getElementById("bottom");
      
   o.style.height = document.getElementById("center").offsetHeight - 505 + "px";
               
}

window.onload = OnLoad;	

