/* 

function showFlash() {
     //this div positions the flash container it on the page
     obj1 = document.getElementById("werbung");
     obj1.style.visibility = "visible";
     obj1.style.display = "inline";
     obj1.style.backgroundColor = "#FFF";
	 setTimeout ( "hideFlash()", 2000 );
}

function timeouthide() {
	 setTimeout ( "hideFlash()", 20000 );
}
*/
function hideFlash() { 
     obj1 = document.getElementById("werbung");
     obj1.style.display = "none";
     obj1.style.visibility = "hidden";
}



