////////////////////////////////////////////////////////////////////////////////////
///// error /////
////////////////////////////////////////////////////////////////////////////////////

    onerror = stopError;
    function stopError()
    {
    return true;
    }


////////////////////////////////////////////////////////////////////////////////////
///// mainstatus /////
////////////////////////////////////////////////////////////////////////////////////



var defaultwinstat = "Katherina Föller - Malerin aus zwanghafter Leidenschaft";
	window.defaultStatus = defaultwinstat;
		
	function winstat( txt ) {
		if( txt != '' )
			window.status = defaultwinstat + " | " + txt;
		else
			window.status = defaultwinstat;
		return true;
	}



////////////////////////////////////////////////////////////////////////////////////
///// statustext /////
////////////////////////////////////////////////////////////////////////////////////

 function Statustext(txt) {
                self.status = txt
        }
        function Statustext_leer() {
                self.status = ""
        }


////////////////////////////////////////////////////////////////////////////////////
///// clear /////
////////////////////////////////////////////////////////////////////////////////////


function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = ""
}

//----------------------------------------------------------------------------------------------------------------------------------

function blured(){
	for (a in document.links) document.links[a].onfocus = document.links[a].blur;}
	if (document.all){document.onmousedown = blured;}

//----------------------------------------------------------------------------------------------------------------------------------


