// _________________________________________________________________
//
// File	:   	javascript.js
// Copyright:   (c) 2001-2010 Comgate Solutions AG, Bern
// Author 	:   Tom Faller
// Created	:   15.10.2010
//_________________________________________________________________

// Description   :	Remove "Suchen..." text on focus

function prepareSearchBox()
{
	if(document.getElementById("searchArgument").value == "Suchen...")
	{
		document.getElementById("searchArgument").value = "";
	}
}

// Description   :	Display a spam-proof e-mail address
function displayEMail(text1, text2, text3)
{
	document.write("<A href=" + "mail" + "to:" + text1 + "@" + text2 + "." + text3 + ">" + text1 + "@" + text2 + "." + text3 + "</a>")
}

