function popwin(id,imageWidth,imageHeight) {	
	newWindow = window.open("","pic","height="+imageHeight+",width="+imageWidth+",top=0,left=0,scrollbars=no,status=no,toolbar=no,menubar=no,location=no");
	newWindow.document.open();
	newWindow.document.write('<html><title>PIC</title><head></head><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor="#FFFFFF">'); 
	newWindow.document.write('<div align="center"><img src='+id+' width='+imageWidth+' height='+imageHeight+'></div>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}





