<!--
function openwindow(url,w,h) {
	browserName = navigator.appName;
	browserVer = parseInt(navigator.appVersion);
	var ww=w+18;
    var hh=h+22;
	leftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	topPosition = (screen.height) ? (screen.height-h)/2 : 0;
	var windowpropsie = 'width=' + w + ',height=' + h + ',top='+ topPosition +',left='+ leftPosition +',toolbar=no,location=no,directories=no,status=yes,menubar=no';
	var windowpropsns = 'width=' + ww + ',height=' + hh + ',top='+ topPosition +',left='+ leftPosition +',noresize,toolbar=no,menubar=no,dependent=yes';
	if (browserName == "Netscape" && browserVer >= 3) {
		popup = window.open("",'remote',windowpropsns);
	} else {
		popup = window.open("",'remote',windowpropsie);
	}		
	popup.document.open();
	popup.document.write("<html><head><title>Haemimont Games</title></head><body bgcolor=#000000 leftmargin=0 topmargin=0>");          
	popup.document.write("<table width=" + w + " height=" + h +"><tr align=center valign=center><td align=center valign=center><img src="+url+"></td></tr></table>");
	popup.document.write("</body></html>");
	popup.document.close();	
}
// -->
