function imagepop(imgfile,winname,imgwidth,imgheight){
	var features = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no";
	if(window.screen){
		var myLeft = (screen.width-imgwidth)/2;
		var myTop = (screen.height-imgheight)/2;
		features+=',left='+myLeft+',top='+myTop;
	}
	imagepopup = window.open('','',features+',width='+imgwidth+',height='+imgheight);
	with (imagepopup) {
		document.open();
		document.write('<title>'+winname+'</title>');
		document.write('<meta http-equiv="imagetoolbar" content="no">');
		document.write('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" scroll="no">');
		document.write('<a href="javascript:self.close()">');
		document.write('<img src="'+imgfile+'" border="0">');
		document.write('</a></body>');
		document.close();
	}
}
