/// popupscript ///var dwidth=200;var dheight=200;var extraheight=50;var wstatus=0;var wtoolbar=0;var wlocation=0;var wmenubar=0;var wdirectories=0;var wresizable=0;var wscrollbars=1;var defaultExt=".jpg";var ssmwidth=400;var ssmheight=380;var sstwidth=400;var sstheight=420;var retailwidth=400;var retailheight=350;var truckwidth=250;var truckheight=460;function image_popup(path,filename) {		if(path=="images/ssm/full/") {		dwidth=ssmwidth;		dheight=ssmheight;	} else if(path=="images/sst/full/") {		dwidth=sstwidth;		dheight=sstheight;		if(filename=="SST2410C") {			dheight=sstheight+50;		}	} 	else if(path=="images/retail/full/") {		dwidth=retailwidth;		dheight=retailheight;		if(filename=="581105" || filename=="581106") {			dheight=retailheight+50;		}	} else if(path=="images/truck/full/") {		dwidth=truckwidth;		if(filename=="ACT") {			dheight=truckheight;		} else if(filename=="RPT") {			dheight=truckheight+70;		}	}	var dtotalheight=dheight+extraheight;		var fullpath=path+filename+defaultExt;		mywindow = window.open ("","","location="+wlocation+",status="+wstatus+",scrollbars="+wscrollbars+",toolbar="+wtoolbar+",menubar="+wmenubar+",directories="+wdirectories+",resizable="+wresizable+",width="+dwidth+",height="+dtotalheight);	mywindow.document.write("<html>");	mywindow.document.write("<head>");	mywindow.document.write("<title>"+filename+"</title>");	mywindow.document.write("</head>");	mywindow.document.write("<body style='margin: 30px 10px 10px 10px; padding: 0px;'>");	mywindow.document.write("<img src='"+fullpath+"' />");	mywindow.document.write("<h1 style='text-align:center; text-transform:uppercase;'>"+filename+"</h1>");	mywindow.document.write("<p style='text-align:center;'><a href=# onClick='window.close()'>Close Window</a></p>");		mywindow.document.write("</body>");	mywindow.document.write("</html>");		mywindow.moveTo(100,100);	mywindow.focus();} ///