<!-- Begin
timeout =0; // Close window after __ number of seconds?
// 0 = do not close, anything else = number of seconds

function Start(URL, WIDTH, HEIGHT, PRODUCT) {
windowprops = "left=0,top=0,width=" + (320) + ",height=" + (300);

text = "<html><head><title>"+ PRODUCT +"</title></head><body onBlur='self.focus()' bgcolor='white'";

if (timeout != 0) text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\"";

text += "><center><img src=images/mini-logo.gif width=297 height=79><br /><font face=Arial size=2>The product you selected is not a standard off-the- shelf item and was shown for concept only.<br /><br />";
text += "Please contact your ITW Fastex&#174; Engineer for more information on this product or for other custom designs or specialty plastic fasteners, clips, grommets or rivets.<br /><br /><br />";
text += "Thank you for your interest in Fastex.<br />  We look forward to working with you to satisfy your plastic fastener requirements</font>.";
if (timeout != 0) text +="";

text += "</center></body></html>";

preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}
//  End -->