function checkIfFrameExists(){
	if(parent.frames.length==0){
		if(document.body){
			var body=document.body;
			var msg=document.createElement("a");
			msg.href="http://www.das-chemnitzer-kabarett.de";
			msg.style.display="block";
			msg.style.backgroundColor="#CC0000";
			msg.style.color="#FFFFFF";
			msg.style.fontWeight="bold";
			msg.style.padding="10px";
			msg.style.borderBottom="5px solid #FFFFFF";
			msg.style.textAlign="center";
			msg.appendChild(document.createTextNode("Sie haben diese Seite außerhalb unseres Seitenkontextes aufgerufen. Bitte klicken Sie hier, um die komplette Seite und die Navigation anzuzeigen. Vielen Dank!"));
			body.insertBefore(msg,body.firstChild);
		}
		
	}
}
