function gotoEmployer()
{
	var bSubmit = checkForm();
	
	if (bSubmit)
	{
		document.mainform.action="/salarywizard/layoutscripts/swzl_employer.asp";
		document.mainform.target="_self";
		document.mainform.submit();
	}
}


function editSelections()
{
	//var bSubmit = checkForm();
	
	//if (bSubmit)
	//{
		document.mainform.action="/salarywizard/layoutscripts/swzl_overview_ext.asp";
		document.mainform.target="_self";
		document.mainform.submit();
	//}
}

function checkForm()
{
	var objField;
	objField = document.mainform.geometrocode;
	if(objField.options[objField.selectedIndex].value == "")
	{
		alert("Please select a location.");
		objField.focus();
		return false;
	}
	return true;
}

function gotoOverviewExt()
{
	var bSubmit = checkForm();
	
	if (bSubmit)
	{
		document.mainform.action="/salarywizard/layoutscripts/swzl_overview_ext.asp";
		document.mainform.target="_self";
		document.mainform.submit();
	}
}
