/*
 * 		Product.js
 * 		Popup window for product page
 * 
 */
document.observe("dom:loaded", function() {
	$$('#customfields a').each(function(link) {
		link.onclick = function(){
	    window.open(this.href,'popup','resizable=0,location=0,scrollable=0,width=240px,height=320px');
	    return false;
		};
	});
	$('c1').writeAttribute('href','/v/popup_shipping.html');
	$('c2').writeAttribute('href','/v/popup_fitment.html');
	$('c3').writeAttribute('href','/v/popup_satisfaction.html');
});
