	//accepts width and height of image to display
	function openWindow(fileName, title, w, h)
	{
		if (fileName.indexOf("_s.") != -1)
			fileName = fileName.substring(0, fileName.lastIndexOf("_s")) + ".jpg";
			
		imgToWrite = new Image();
		imgToWrite = fileName;
		
		w = w + 100;
		h = h + 75;
		
		if (w > 770) w = 770;
		if (h > 550) h = 550;
		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=" + h + ", width=" + w ); 
		picWindow.document.write("<html><TITLE>Shur-Way -- " + title + "</TITLE>");
		picWindow.document.write("<body bgcolor=#ff6600 ><center><table style='font-family:arial;'><tr><td align=center><img src=" + imgToWrite + " alt='Shur-Way -- " + title + "' Title='Shur-Way -- " + 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();
	}		