	function pop(strTitle,strImg,intWidth,intHeight)
	{
		strBars="directories=no,location=no,status=yes,menubar=no";
		strBars+=",titlebar=no,toolbar=no";
		strOptions="scrollbars=no,,width="+intWidth+",height="+intHeight+",resizable=no,maximizebutton=no,hotkeys=no";
		strFeatures=strBars+","+strOptions;
		var newWin=open("","newWin",strFeatures);
		newWin.document.writeln("<html>");
		newWin.document.writeln("<head>");
		newWin.document.writeln("<title>");
		newWin.document.writeln(strTitle);
		newWin.document.writeln("</title>");
   		newWin.document.writeln("</head>");
		newWin.document.writeln("<body TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 BOTTOMMARGIN=0>");
		newWin.document.writeln("<img src=images/"+strImg+">");
		newWin.document.writeln("</body>");
		newWin.document.writeln("</html>");
		newWin.document.close();
		newWin.focus();
	}
