function navigation(which_nav)
{
var which_nav = which_nav;
var a = document.getElementById("corporate_navigation");
var b = document.getElementById("individual_navigation");
var c = document.getElementById("corporate_img");
var d = document.getElementById("individual_img");

if (which_nav == "corporate")
	{
	a.style.display = "block";
	b.style.display = "none";
	c.src = "/_images/buttons/corporate_hig.png";
	d.src = "/_images/buttons/individual.png";
	}
else
	{
	a.style.display = "none";
	b.style.display = "block";
	c.src = "/_images/buttons/corporate.png";
	d.src = "/_images/buttons/individual_hig.png";
	}
}


function checkInputIn(which_form, which_input, should_be)
{
var a = eval("document.forms."+which_form+"."+which_input+".value");
if (a == should_be)
	{
	eval("document.forms."+which_form+"."+which_input+".value = '';");
	}
}

function checkInputOut(which_form, which_input, should_be)
{
var a = eval("document.forms."+which_form+"."+which_input+".value");
if (a == "")
	{
	eval("document.forms."+which_form+"."+which_input+".value = '"+should_be+"';");
	}
}