function currentDate() {
	var this_date_timestamp=new Date();
	var this_year = this_date_timestamp.getYear();
	if (this_year < 1000)
		this_year+= 1900;
	if (this_year==101)
		this_year=2001;
	return this_year;
  }

function submitform(loc) {
	
	if (loc == 'Calculator.jsp') {
		//default page so just submit
		document.getElementById('action').value = 'changelocation';	
		document.getElementById('ChangeLocation').value = 'yes';	
	}
	if (loc == 'Cal') {
		//change action of page and submit
		document.getElementById('action').value = 'Cal.jsp';	
	}
	if(loc == 'CalculatorLocation') {
		document.getElementById('ChangeLocation').value = 'yes';
		document.getElementById('action').value = 'changelocation';	
	}
	if(loc == 'CalculatorZIP') {
		document.getElementById('ChangeLocation').value = 'yes';
		document.getElementById('action').value = 'changezip';	
	}
	if(loc == 'decode') {
		document.getElementById('action').value = 'DECODE_VIN';
	}
	
	document.getElementById('StateCounty').submit();
	
}

function submitThis() {
	document.getElementById('StateCounty').submit();
}

function ValidateApp()
{
	rt = false;
	var D = 4;
	var PT = ProductInfo();
	if(ValidApp(D,PT) == true){	rt = true;	}
	return rt;		
}

function ValidateAppAndConfirm()
{
	rt = false;
	var D = 4;
	var PT = ProductInfo();
	if(ValidApp(D,PT) == true){	rt = true;	}
		
	return rt;		
}



