function openremoteWindow1()
{ open ("images/heat_transfer.jpg", "heat_transfer", "location=0,top=0,left=0,width=540,height=430,scrollbars=yes,resizable=no,status=no,toolbar=no,border=no") }
// End-->

function openremoteWindow2()
{ open ("images/HorzLoopRes.jpg", "HorzLoop", "location=0,top=0,left=0,width=540,height=410,scrollbars=yes,resizable=no,status=no,toolbar=no,border=no") }
// End-->

function openremoteWindow3()
{ open ("images/VertLoopRes.jpg", "VertLoop", "location=0,top=0,left=0,width=540,height=410,scrollbars=yes,resizable=no,status=no,toolbar=no,border=no") }
// End-->

function openremoteWindow4()
{ open ("images/PondLoopRes.jpg", "PondLoop", "location=0,top=0,left=0,width=540,height=410,scrollbars=yes,resizable=no,status=no,toolbar=no,border=no") }
// End-->

function openremoteWindow5()
{ open ("images/OpenLoopRes.jpg", "OpenLoop", "location=0,top=0,left=0,width=540,height=410,scrollbars=yes,resizable=no,status=no,toolbar=no,border=no") }
// End-->




//Request Estimate

function checkformEstimate (form)
{

	var Name = Estimate.Name.value ;
	if (Name == "")
		{
			alert ("Please enter your name.") ;
			Estimate.Name.focus();
			return ;
		}
	var Address = Estimate.Address.value ;
		if (Address == "")
			{
				alert ("Please enter your Address.") ;
				Estimate.Address.focus();
				return ;
		}
	var City = Estimate.City.value ;
			if (City == "")
				{
					alert ("Please enter your City.") ;
					Estimate.City.focus();
					return ;
		}
	var State = Estimate.State.value ;
		if (State == "")
			{
				alert ("Please enter your State.") ;
				Estimate.State.focus();
				return ;
		}
	var Zipcode = Estimate.Zipcode.value ;
		if (Zipcode == "")
			{
				alert ("Please enter your Zipcode.") ;
				Estimate.Zipcode.focus();
				return ;
		}

	var HomePhone = Estimate.HomePhone.value ;
		if (HomePhone == "")
			{
				alert ("Please enter your HomePhone number.") ;
				Estimate.HomePhone.focus();
				return ;
		}
		
	var Email = Estimate.Email.value ;
	if (Email == "")
		{
			alert ("Please enter your email address.") ;
			Estimate.Email.focus();
			return ;
		}
		
	var date1 = Estimate.date1.value ;
		if (date1 == "")
			{
				alert ("Please select the first preferred date.") ;
				Estimate.date1.focus();
				return ;
		}
		
	var time1 = Estimate.time1.value ;
			if (time1 == "")
				{
					alert ("Please select the first preferred time.") ;
					Estimate.time1.focus();
					return ;
		}
	var date2 = Estimate.date2.value ;
			if (date2 == "")
				{
					alert ("Please select the second preferred date.") ;
					Estimate.date2.focus();
					return ;
			}
			
	var time2 = Estimate.time2.value ;
			if (time2 == "")
				{
					alert ("Please select the second preferred time.") ;
					Estimate.time2.focus();
					return ;
	}
	var date3 = Estimate.date3.value ;
		if (date3 == "")
			{
				alert ("Please select the second alternate date.") ;
				Estimate.date3.focus();
				return ;
	}
				
	var time3 = Estimate.time3.value ;
		if (time3 == "")
			{
				alert ("Please select the second alternate time.") ;
				Estimate.time3.focus();
				return ;
	}

	var securityCode = Estimate.securityCode.value ;
		if (securityCode == "")
			{
				alert ("Please enter the code.") ;
				Estimate.securityCode.focus();
				return ;
		}
	
Estimate.submit() ;

}
