function openPopUp(imageURL, partNo) {
	var popUpWindow = window.open(' ', 'popUp', 'height=600, width=800, location=no, menubar=no, resizable=yes, toolbar=no, status=1,scrollbars=yes,directories=no');
 	popUpWindow.document.write('<TABLE BORDER="5" ALIGN="center" WIDTH="540">');
 	popUpWindow.document.write('<TR><TD ALIGN="left" BGCOLOR="#000000"><SPAN STYLE="font-size:12pt; color:#FFFFFF; font-family:arial"><B>Part Number: ' + partNo + '</B></SPAN></TD></TR>');
 	popUpWindow.document.write('<TR><TD ALIGN="center"  HEIGHT="500"><IMG SRC="' + imageURL + '" BORDER="0" ALT="No image available"></TD></TR>');
 	popUpWindow.document.write('<TR><TD BGCOLOR="#FFFFFF"><TABLE BORDER="0" WIDTH="100%" ALIGN="center" CELLSPACING="0" CELLPADDING="0"><TR><TD  BGCOLOR="#000000" ALIGN="left" WIDTH="270"><SPAN STYLE="font-size:12pt; color:#FFFFFF; font-family:arial"><B>Allegis Corporation</B></TD><TD  BGCOLOR="#000000" ALIGN="right" WIDTH="270"><SPAN STYLE="font-size:12pt; color:#FFFFFF; font-family:arial"><B>1-866-378-7550</B></SPAN></TD></TR></TABLE></TD></TR>');
 	popUpWindow.document.write('</TABLE>');
 	popUpWindow.document.write('<BR>');
 	popUpWindow.document.write('<TABLE BORDER="0" ALIGN="center" WIDTH="540">');
 	popUpWindow.document.write('<TR><TD ALIGN="center" WIDTH="270"><INPUT type="image" NAME="Print" src="/jsp/printLarge.gif" onclick="print()"></TD><TD ALIGN="center" WIDTH="270"><INPUT type="image" NAME="Print" src="/jsp/closeLarge.gif" onclick="window.close()"></TD></TR>');
 	popUpWindow.document.write('</TABLE>');
 	popUpWindow.document.close();
 	popUpWindow.focus();
}