
function makeWindow(w,h,src,title)
{
	if (document.all || document.getElementById) 
    {
		boxTop   = (screen.height)/2 - h;
    	boxLeft  = (screen.width - w)/2;
    	photoWin = window.open("","photo",'height='+h+',width='+w+',top='+boxTop+',left='+boxLeft+',scrollbars=no,resizable=no');	
	}
	else if (document.layers) 
	{
    	boxTop   = (screen.availHeight)/2 - h;
        boxLeft  = (screen.availWidth - w)/2;
		photoWin = window.open("","photo",'innerHeight='+h+',innerWidth=width='+w+',top='+boxTop+',left='+boxLeft+'');
	
	}
	photoWin.document.write('<html><title>'+title+'<\/title><body bgcolor="#ffffff" marginwidth="0" marginheight="0" style="margin:0px;">');
	photoWin.document.write('<a href="javascript:self.close();"><img name="photo" src='+src+' title="Click to Close" border="0"><\/a>');
	photoWin.document.write('<\/body><\/html>');
	photoWin.document.close();
}
