	//POPUPFÖNSTER
	function popit(url, name, width, height, scrollbars)
	{
		newwindow=window.open(url, name, 'status=YES,width='+width+',height='+height+',scrollbars='+scrollbars);
		if (window.focus) {newwindow.focus()}
		return false;
	} 
		
	//SÖKFORMULÄR
	function ClearTxT(txt)
	{
		if (txt.value == txt.defaultValue)
		{
			txt.value = ""
		}
	}
