function goTo(newLoc){
	var URL = newLoc.options[newLoc.selectedIndex].value;
	if(URL!=0){
		window.location.href = URL;
	}
}

function popUP(theURL,windowName,theWidth,theHeight){
	goMiddle = (screen.availHeight / 2) - (theHeight / 2);
	goCenter = (screen.availWidth / 2) - (theWidth / 2);
	window.open(theURL,windowName,"toolbar=0,menubar=no,location=0,scrollbars=no,resizable=no,width="+theWidth+",height="+theHeight+",left="+goCenter+",top="+goMiddle);
}

function popUPscroll(theURL,windowName,theWidth,theHeight){
	goMiddle = (screen.availHeight / 2) - (theHeight / 2);
	goCenter = (screen.availWidth / 2) - (theWidth / 2);
	window.open(theURL,windowName,"toolbar=0,menubar=no,location=0,scrollbars=yes,resizable=yes,width="+theWidth+",height="+theHeight+",left="+goCenter+",top="+goMiddle);
}

function BillToShip() {
	document.info.shipping_address.value = document.info.address.value;
	document.info.shipping_address2.value = document.info.address2.value;
	document.info.shipping_city.value = document.info.city.value;
	document.info.shipping_zip.value = document.info.zip.value;
	document.info.shipping_state.value = document.info.state.value;
	document.info.shipping_country.value = document.info.country.value;
}

function confirmAction(theMessage) {
	if(confirm(theMessage)){ return true ; }
	else{ return false ; }
}