/**************************************************************************
* Entwicklung von : Little Engine Design				  *
*		    (Eine Abteilung der CPE Computerservice Engmann GmbH) *
*									  *
* Strasse	  : Tränkgasse 2					  *
* Ort		  : 55278 Hahnheim					  *
* Land		  : Deutschland						  *
*									  *
* Telefon	  : 06150/591466					  *
* E-Mail	  : milani@little-engine.de				  *
* URL		  : http://www.little-engine.de				  *
*		    http://www.cpe-engmann.de				  *
***************************************************************************
* Dateiname	  : functions.js					  *
* Version	  : 1.0							  *
* Programmiert am : 26.02.2004 - 26.02.2004				  *
* Programmiert von: Sascha Milani					  *
* Beschreibung	  : Function Script.					  *
* (C)opyright by  : Sascha Milani (C)2004, Little Engine Design		  *
*		    All Rights Reserved.				  *
***************************************************************************/


function FocusSearchForm (newObject)
{
	newObject.value = "";
}


function DeFocusSearchForm (newObject, Text)
{
	if (newObject.value == "")
	{
		newObject.value = Text;
	}
}


function swap_content(span) {
	displayType = ( document.getElementById( span ).style.display == 'none' ) ? 'block' : 'none';
	document.getElementById( span ).style.display = displayType;
}
