function search()
{
	location.href = "search.php?action=search&keyword="+document.search_box.keyword.value;
}

function setTitle(obj)
{
	checkJS();
	document.title = obj;
}

function checkJS()
{
	var root = "/";
	
	//display the searchbar
	document.getElementById('siteSearching').style.display = 'block';
	
	//display the car-offering
	if(window.location.pathname == root+"fahrzeughandel.php")
	{
		document.getElementById('carOffer').style.display = 'block';	
	}
	
	//display the galerie
	if(window.location.pathname.substr(root.length, 12) == "galerie.php")
	{
		document.getElementById('myGalerie').style.display = 'block';	
	}
	
	//display the contact-box
	if(window.location.pathname.substr(root.length, 12) == "kontakt.php")
	{
		document.getElementById('contact_box').style.display = 'block';	
	}
}
