function loadScripts()
{
	P7_initPM(1,0,1,-20,10);
	P7_centerTag('p7PMnav');
	setmyclass();
	myString = new String(window.location)
	if (myString.indexOf("contact-us.html")>0)
	{
		document.getElementById('inqblot').innerHTML='';
	}

}

function checkme(x)
{

	if (x.checked == true)
	{
		document.getElementById('inqblot').innerHTML= '<div class="qrow"><label for="adults">How many adults are in your family?:</label><input name="adults" id="adults" type="text" size="8" maxlength="8" /></div><div class="qrow"><label for="kids">How many children are in your family?:</label><input name="kids" id="kids" type="text" size="8" maxlength="8" /></div><div class="qrow"><label for="hear">How did you hear about Raphael House? </label><textarea name="hear" id="hear" cols="50" rows="4"></textarea></div><div class="qrow"><label for="staying">Where are you currently staying?</label><textarea name="staying" id="staying" cols="50" rows="4"></textarea></div>';
		document.getElementById('adults').focus();
	}
	else
	{
		document.getElementById('inqblot').innerHTML = '';
	}
}

