
function smallsite (id,action)
{
	if(action == 'ausblenden') 
	{
		document.getElementById('smallsitebuttondown').style.display = 'none';
		document.getElementById('smallsitebuttonup').style.display = 'block';
		boxOut();
	}
	else if (action == 'einblenden')
	{
		document.getElementById('smallsitebuttonup').style.display = 'none';
		document.getElementById('smallsitebuttondown').style.display = 'block';
		boxIn();
	}
}

function searchtxt(standard)
{
	if(document.getElementById('service_searchsite').value == standard)
		document.getElementById('service_searchsite').value = '';
}
