//<!--//*******************************//****** JavaScripts 4 PST ******//*******************************//**************************//* Funktionen fŸr Cookies *//**************************	function setcookie(name, wert)	{		document.cookie = name + "=" + escape(wert);	}		function getcookie(name) // .. aus javascript-Reference 1.1 von Netscape	{		var search = name + "=";		var offset;		var end;		if (document.cookie.length > 0) //.. check if cookies exist		{			offset = document.cookie.indexOf(search); //.. check if dis cookie exists			if (offset != -1)			{				offset += search.length;				end = document.cookie.indexOf(";", offset);				if (end == -1) end = document.cookie.length;				return unescape(document.cookie.substring(offset, end))			} // end of if offset..		} // end of if document..	}				//**********************//* Diverse Helferlein *//**********************	function setfieldfocus(what)	{		if (what == 'login') document.anchors["login"].focus();		if (what == 'Firma') document.editdetails.Firma.focus();	}		function footer(text)	{		if (text == '') text = ' ';		window.status=text;	}	function firstask(question, aktion)	{		check = confirm(question);		if (check == true) parent.iContacts.location.href = aktion;	}	function winopen(source, name, options)	{		window.open(source, name, options);	}	//-->