
function openWindow (url,width,height,blueribbon) {
	popupwin = window.open('','popupimg','width='+width+',height='+height+',menubar=no,toolbar=no,nostatus');
	popupwin.document.open();
	popupwin.document.write('<html><head><title>'+blueribbon+'</title></head><body marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 bgcolor="#FDF7E4"><a href="JavaScript:void(0);" onClick="window.close();"><img src="'+url+'" border=0 galleryimg="no"></a></body></html>');
	popupwin.document.close();
}


