	function popup(pURL,pName,pFeatures){
		new_window = window.open(pURL,pName,pFeatures);
		new_window.focus();
		return false;
	}

function shipping_popup(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
window.open(strURL, 'newWin', strOptions);
}

//remove form text onclick
function clearFormOnClick(formName, defaultValue) {
	if (formName.q.value == defaultValue) {
		formName.q.value = "";
	}
}