function popupToNotify(){
//alert ("hallo welt");
var host = window.location.hostname; 
var path   = window.location.pathname;
var x  = "";
var adresse = "http://titelbilder.bauerverlag.de/information/popup.htm";

	if (host == "www.bauermedia.com"  || host == "bauermedia.com"){
	//x = window.open(adresse, "Zweitfenster", "width=230,height=365,left=100,top=200");
	//x.focus();
	blockToggle('hinweis');
}

}

function blockToggle(id)
{
 if(document.getElementById(id).style.display == 'none')
 {
  document.getElementById(id).style.display = 'block';
 }
 else
 {
  document.getElementById(id).style.display = 'none';
 }
}