
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><style type="text/css"><!--body,td,th {font-family: MS Sans Serif, Microsoft Sans Serif, Verdana, Arial;font-size: 12px;color: #FFFFFF;}--></style></head><body marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 bgcolor="#302F3F"><a href="JavaScript:void(0);" onClick="window.close();"><img src="'+url+'" border="no" galleryimg="no"></a><BR></body></html>');
	popupwin.document.close();
}

