// JavaScript Document
function popitup() {
	newwindow2=window.open('','name','height=470,width=400');
	var tmp = newwindow2.document;
	tmp.write('<html><head><title>SSL Security</title>');
	tmp.write('<link rel="stylesheet" href="/style.css">');
	tmp.write('</head><body style="background-color:#e8e8e8"><p><a href="javascript:self.close()">close</a> this window.</p><strong>Request Quotes on Custom Products</strong><P>To Request a quote on one or multiple items that are quote only, simply add it to your shopping cart, and procceed through checkout.  As long as there are no items that have a stated price, you will not have to enter payment information.<P>If your order contains products that require a quote as well as items that have stated prices, you can proceed through checkout, and pay for the items that do have prices, and we will contact you with a quote on items that require one.<P><STRONG>Checking out with items that are Quote Only does not obligate you to purchase those items.</strong>');
	tmp.write('<p><a href="javascript:self.close()">close</a> this window.</p>');
	tmp.write('</body></html>');
	tmp.close();
}
