
function _openwin(page){
 window.open(page, 'helpWindow', 'location=no,scrollbars=yes,toolbar=no,width=300,height=400');
}

function updQuant(i){
	var f="prodform"+i;
	var e="quant"+i;
	p=document.getElementById(f);
	q=document.getElementById(e);
	p.quant.value=q.value;
	p.submit();
}


function frmsubmit(func) {
	//alert(func);
	document.basket.func.value = func;
	document.basket.submit();
}

function _opensecwin(url){
secwin=window.open(url, 'securewin', 'location=0,scrollbars=auto,toolbar=no,status=yes,width=650,height=600');
 secwin.window.focus();
}

function launchcalculator(prod_id,formid,quantid){
calcwin=window.open('calculator.php?id='+prod_id+'&form='+formid+'&quant='+quantid, 'calcwin', 'location=0,scrollbars=yes,toolbar=no,status=no,resizable=yes,width=345,height=460');
 calcwin.window.focus();
}
