
// Google Internal Site Search script- By JavaScriptKit.com (http://www.javascriptkit.com)
// For this and over 400+ free scripts, visit JavaScript Kit- http://www.javascriptkit.com/
// This notice must stay intact for use

//Enter domain of site to search.
var domainroot="homesource.concentricsky.com";

function Gsitesearch(curobj){
	curobj.q.value="site:"+domainroot+" "+curobj.qfront.value;
}

function showRegForm()
{
	var regElement = document.getElementById("regform");
	if(regElement.style.display == 'none')
	{
		regElement.style.display = 'block';
	}
	else
	{
		regElement.style.display = 'none';
	}
}

function showSecondLevel(id)
{
	document.getElementById(id).style.display='block';
}

function hideSecondLevel(id)
{
	document.getElementById(id).style.display='none';
}