	function fnValidateForm1(theForm){
		 if (theForm.term.value == '' ) {
			 alert('You must enter Mortgage Term.');
			 return false;
		} else{
			return true;
		}
	}


	function openWin( windowURL, windowName, windowFeatures ) { 
		return window.open( windowURL, windowName, windowFeatures ) ; 
	} 