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+"';");
	}
}


function showFAQ(which_FAQ) {
var a = document.getElementById(which_FAQ);
if (a.style.display == "none" || a.style.display == "")
	{
	a.style.display = "block";
	}
else
	{
	a.style.display = "none";
	}
}
