function ShowRateEstimates()
{
	var show=true;
	if (document.aspnetForm.ctl00_cphTemplateContent_freightproductqty.value == "")
	{
		alert('Please enter Product Quantity');
		document.aspnetForm.ctl00_cphTemplateContent_freightproductqty.focus();
		show=false;
		return false;
	}
	//alert(document.aspnetForm.ctl00_cphTemplateContent_freightstate.value);
	if (document.aspnetForm.ctl00_cphTemplateContent_freightstate.value == "")
	{
		alert('Please enter Ship To State');
		document.aspnetForm.ctl00_cphTemplateContent_freightstate.focus();
		show=false;
		return false;
	}
	if (document.aspnetForm.ctl00_cphTemplateContent_freightzip.value=="")
	{
		alert('Please enter Ship To Zip');
		document.aspnetForm.ctl00_cphTemplateContent_freightzip.focus();
		show=false;
		return false;
	}
	if (document.aspnetForm.ctl00_cphTemplateContent_freightcountrycode.value=="")
	{
		alert('Please enter Ship To Country Code');
		document.aspnetForm.ctl00_cphTemplateContent_freightcountrycode.focus();
		show=false;
		return false;
	}
	

	if (show==true)
	{
		//alert('open popupnow');
		var totalweight;
		totalweight = (parseInt(document.aspnetForm.ctl00_cphTemplateContent_freightproductqty.value) /  parseInt(document.aspnetForm.ctl00_cphTemplateContent_cartonqty.value));
		totalweight = totalweight * parseInt(document.aspnetForm.ctl00_cphTemplateContent_cartonweight.value);
		
		window.open('http://ns5.powerweave.com/FreightEstimatorV2/Default.aspx?appname=Aquasheen&fromcity=Miami&fromstate=FL&Fromzip=33169&Fromcountry=US&Tostate=' + document.aspnetForm.ctl00_cphTemplateContent_freightstate.value + '&ToZip=' + document.aspnetForm.ctl00_cphTemplateContent_freightzip.value + '&ToCountry=' + document.aspnetForm.ctl00_cphTemplateContent_freightcountrycode.value + '&Weight='+ totalweight +'&uspsuserid=Aquasheen&uspsuserpassword=devaqua&fedexAccountNumber=101390489&fedexMeterNumber=5289660&UPSAccesslicensenumber=BC2BBB7C12CFDB7C&UPSUserID=360470&UPSPassword=developer&UPSShippernumber=360470&showfedex=Y&FedexRateType=L' , 'getfreightestimates', 'width=490,height=640,left=250,top=50,scrollbars=yes,status =1');
	}
}
