<!--
function CheckRate(form) {
	country="US";	
	if (form.scountry[1].checked) {
		country="AKHI";
	}	
	if (form.scountry[2].checked) {
		country="CA";
	}
	if (form.scountry[3].checked) {
		country="PR";
	}	
	
	if (form.zip.value.length == 0) {
		alert("Please Enter the Destination Postal Code.");
		return;
	}	
	
	zip=form.zip.value;
	myUrl = "shipcost.asp?zip=" + zip + "&scountry=" + country 
	MM_openBrWindow(myUrl,'','status=yes,scrollbars=yes,resizable=yes,width=600,height=300');
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
