/*
 * 		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=325px');
		    return false;
		};
	});
	//$$('#customfields a').each(function(s,index) {s.writeAttribute('onClick','javascript:window.open(this.href,"prodpopup","resizable=0,location=0,scrollable=0,width=240px,height=320px");return false;')});
	//$$('#customfields a').each(function(s,index) { s.writeAttribute('target','_blank') });
	$('c1').writeAttribute('href','/v/popup_shipping.html');
	$('c2').writeAttribute('href','/v/popup_fitment.html');
	$('c3').writeAttribute('href','/v/popup_satisfaction.html');
});
