function ueberpruefeCookie(){
                //alert(document.cookie);
				document.cookie="OK";
				if(document.cookie=="") {
					obj = document.createElement("div");
					objp = document.createElement("p");
					obja = document.createElement("a");
					obja.setAttribute('href', 'http://www.sensorshop24.de/browser');
					objtexta = document.createTextNode(" Wie kann ich das ändern?");
					obja.style.color = "red";
					obja.style.clear = "both";
					objtext = document.createTextNode("Bitte aktivieren Sie in Ihrem Browser Cookies, um diese Funktion zu nutzen. Der Preis wird weiterhin als Brutto angezeigt.");
					
					var t;
					obj.appendChild(objp);
					obja.appendChild(objtexta);
					
					objp.appendChild(objtext);
					objp.appendChild(obja);
                    obj.id = "super_iframe";
                    obj.src = "http://www.coding-board.de";
                    obj.style.width = "300px";
                    obj.style.height = "50px";
                    obj.style.color = "gray";
                    obj.style.float ="right";
                   
                    var d = "d";
                    obj.style.backgroundColor = "transparent";
                    document.getElementById("cart").appendChild(obj);
                    t=setTimeout("returnFunction()", 3000);
                    
                    
                    
                    
				}
				else {
				    //alert("d");
				    var d = "d";
					return d;
					
				}
			}

function returnFunction() { 
    //alert("argh");
    
      createCookie('Preis','',10);
            location.reload();
}		
