
	function GetIt(URL, WIDTH, HEIGHT, PRODUCT) {
	windowprops = "left=0,top=0,width=" + (WIDTH+30) + ",height=" + (HEIGHT+30);
	text = "<html><head><title>ITW Nexus - " + PRODUCT + " - lacing diagram</title></head><body bgcolor=#ffffff";
	text += "><div align=\"center\">This is the lacing diagram for product:<br>" + PRODUCT + ".<br><img src='" + URL + "'>";
	text +="<br><input type='button' value='close window' onclick='window.close();'>&nbsp;&nbsp;<input type='button' value='print' onclick='window.print();'>";
	text += "</div></body></html>";

	preview=window.open("", "preview", windowprops);
	preview.document.open();
	preview.document.write(text);
	preview.document.close();
}
