function popUp(pic,winSize,cap) {
	var re = /!/gi;
	var newCap = cap.replace(re,"<BR>");
	var html = "<HTML>\n<HEAD>\n<TITLE>PYC Enlarged Image</TITLE>\n<LINK Rel=stylesheet Href=Include/pyc.css>\n</HEAD>\n";
	html += "<BODY BGColor=#93BEE2 TopMargin=0 MarginHeight=0>\n<TABLE Width=100%>\n";
	html += "<TR>\n<TD Class=BlackHeader Align=Center><IMG SRC=images/ClearDot.gif border=0 VAlign=center width=1 height=5></TD>\n</TR>\n";
	html += "<TR>\n<TD Align=left Class=PicText><a Class=PicCycle href=javascript:window.close()><IMG SRC=../images/blue.leftarrow.gif Width=10 Height=8 Border=0>close window</a>&nbsp;|&nbsp;<a Class=PicCycle href=javascript:window.print()>print window</a></TD>\n</TR>\n";
	html += "<TR>\n<TD Class=BlackHeader Align=Center><IMG SRC=images/ClearDot.gif border=0 VAlign=center width=1 height=5></TD>\n</TR>\n";
 	html += "<TR>\n<TD Class=BlackHeader Align=Center><IMG SRC=images/ClearDot.gif border=0 VAlign=center width=1 height=5></TD>\n</TR>\n<TR>\n<TD Class=BlackHeader Align=Center>" + newCap + "</TD>\n</TR>\n";
	html += "<TR>\n<TD Align=center Class=PicText><img src=../images/ClearDot.gif border=0 width=1 height=10</TD>\n</TR>\n";
	html += "<TR>\n<TD Align=center><IMG border=0 SRC=" + pic + "></TD>\n</TR>\n";
	html += "<TR>\n<TD Align=center Class=PicText><img src=../images/ClearDot.gif border=0 width=1 height=10</TD>\n</TR>\n";
	html += "<TR>\n<TD Align=center Class=PicText>For Information And Immediated Faxed Proposals<BR>Call 7 Days 212-717-0300 Or 914-723-4510</TD>\n</TR>";
	html += "\n</TABLE>\n</BODY>\n</HTML>";
	
	if (winSize == 0) {
		var windowprops = "menubar=no,location=no,toolbars=no,scrollbars=yes,WIDTH=600,HEIGHT=460";
	}
	if (winSize == 1) {
		var windowprops = "menubar=no,location=no,toolbars=no,scrollbars=yes,WIDTH=600,HEIGHT=550";
	}
	
	var newWin = window.open("","",windowprops);

	newWin.document.open();
	newWin.document.write(html);
	newWin.document.close();
}

function specialPop() {
	var html = "<HTML>\n<HEAD>\n<TITLE>PYC Enlarged Image</TITLE>\n<LINK Rel=stylesheet Href=Include/pyc.css>\n</HEAD>\n";
	html += "<BODY BGColor=#93BEE2 TopMargin=0 MarginHeight=0>\n<TABLE Width=100%>\n<TR>\n<TD Class=BlackHeader Align=Center></TD>\n";
	html += "</TR>\n</TABLE>\n</BODY>\n</HTML>";

	var windowprops = "menubars=no,location=no,toolbars=no,scrollbars=yes,WIDTH=600,HEIGHT=400";

	var newWin = window.open("","",windowprops);

	newWin.document.open();
	newWin.document.write(html);
	newWin.document.close();
}
