function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

var Pillo = {};
Pillo.ProductImageZoom = function( source ) {
	var regExp 		= /src=\"([^ ]+)\"/i;
	var srcTag 		= source.innerHTML.match(regExp);
	var srcPath		= srcTag[1].replace(/_sm\.jpg/,".html");
	var srcPath		= srcPath.replace(/\/assets\/images/,"");
	MM_openBrWindow(srcPath,'ProductZoom','scrollbars=no,width=630,height=400')
}

Pillo.Purchase = function(d,p) {
	$('item_name').value = 'Pilloroo - ' + d;
	$('amount').value = p;
	//document.forms['buyForm'].submit();
}