function openPop(imageName,alt,posLeft,posTop) {
	newWindow = window.open("","newWindow","width=400,height=400,left="+posLeft+",top="+posTop+", scrollbars=yes");
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="10" topmargin="10" marginheight="10" marginwidth="10" onBlur="self.close()">'); 
	newWindow.document.write('<img src="'+imageName+'" alt="'+alt+'">'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}



