d = document;

function quickfind(sel) {
	if (d.all) {
		d.all["quickfindspacing"].style.display = "inline";
	} else {
		d.getElementById("quickfindspacing").style.display = "inline";
	}
	d.location = d.location.href.split("#")[0] + "#product-" + sel.options[sel.selectedIndex].value;
}

function submitonce() {
	b = (d.all) ? d.all["btn_submit"] :	b = d.getElementById("btn_submit");
	b.disabled = true;
	b.src = 'images/button_please_wait.gif';
	b.style.cursor = 'default';
	return true;
}

function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=450,height=280,screenX=150,screenY=150,top=150,left=150')
}
