function newWinDisp(FileName,W,H){
	NewWinWidth=W+40;
	NewWinHeight=H+40;
	tableWidth=NewWinWidth-30;
	tableHeight=NewWinHeight-30;
	newWin=window.open("","NewWindow","width="+NewWinWidth+",Height="+NewWinHeight);
	newWin.focus();
	newWin.document.open();
	newWin.document.write("<TITLE>"+FileName+"</TITLE>");
	newWin.document.write("<BODY BGCOLOR='#FFFFFF'>");
	newWin.document.write("<CENTER><TABLE BORDER=0 WIDTH="+tableWidth+" HEIGHT="+tableHeight+" CELLSPACING=0>");
	newWin.document.write("<TR><TD ALIGN=CENTER VALIGN=MIDDLE>");
	newWin.document.write("<A HREF='JavaScript:window.close();'>");
	newWin.document.write("<IMG SRC="+FileName+" WIDTH="+W+" HEIGHT="+H+" BORDER=0>");
	newWin.document.write("</A></TABLE></CENTER>");
	newWin.document.close();
}

