function umfrageZeigen(){
	var showLayer = true;

	if(document.getElementById("viss@home")){
		if(document.cookie) {
			if(document.cookie.indexOf("viss@Home=hidden")!=-1) showLayer = false;
		}
		if(showLayer){
			document.getElementById("viss@home").style.display = "block";	
			document.images["bg_umfrage_top"].src = "/viss_at_home/art/bg_umfrage_top.png";	
			document.images["bg_umfrage_middle"].src = "/viss_at_home/art/bg_umfrage_middle.png";	
			document.images["bg_umfrage_bottom"].src = "/viss_at_home/art/bg_umfrage_bottom.png";	
			
			addSrc("umfrageInhalt",umfrageDomain +"/viss_at_home/auswertung.asp?nr="+ umfrageNr,"","GET",null);
		}
	}

}
function umfrageSchliessen(){
	document.getElementById("viss@home").style.display = "none";
}
function umfrageAusblenden(){
	umfrageSchliessen();
	document.cookie = "viss@Home=hidden";//funktioniert im IE nicht(?)
	url = location.href;
	location.href = url +"?vah=no";
}
function umfrageAuswerten(FrageNr,obj){
	document.getElementById("umfrageInhalt").innerHTML = '<div style="width:100%;text-align:center;margin-top:7em;">Bitte warten...</div>';
	addSrc("umfrageInhalt",umfrageDomain +"/viss_at_home/auswertung.asp?nr="+ FrageNr +"&anr="+ obj.value,"","GET",null);
}
