function OpenPhoto(id,object){
	var left = ((screen.availWidth - 400)/2);
	var top = ((screen.availHeight - 200)/2);
	wphoto = window.open("/photo,"+id+".html?o="+object,"wphoto",
    "left="+left+",top="+top+",height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
	wphoto.focus();
	return;
}