	function openWindow1(fileName, title)
	{
		fileName = fileName.substring(0, fileName.lastIndexOf("_s")) + ".jpg";
		imgToWrite = new Image();
		imgToWrite = fileName;
		
		picWindow = window.open("", "newwindow", "toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=yes, left=0, top=0, screenX=0, screenY=0, height=600, width=800"); 
		picWindow.document.write("<html><TITLE>Shur-Way Moving -- " + title + "</TITLE>");
		picWindow.document.write("<body bgcolor=#ff6600><center><table  style='font-family:arial;'><tr><td align=center><img src=" + imgToWrite + " alt='Shur-Way Moving -- " + title + "' Title='Shur-Way Moving -- " + title +"' border=2 id=imgName ></td><tr><td align=center><strong>Shur-Way Moving -- " + title +"</strong></td></tr></table></center></body></html>");
		
		picWindow.document.close();
	}		