<!-- // Lade Frame  -->

function frame()
{
    if(top.frames.length == 0)        
    {
		 top.location = "index.php" 
	}	 
}

function callJS(jsStr) 
{ 
  return eval(jsStr)
}

<!-- // Anzeigen POPUB -->

window.onerror=null;
var checkw=null;
function news(b,h) 
{

var hoehe = 0;
var breite = 0;

hoehe = h;
breite = b;

LeftPosition = (screen.width) ? (screen.width-900)/2 : 0;
TopPosition = (screen.height) ? (screen.height-900)/2 : 0;
settings ='height='+h+',width='+b+', top='+TopPosition+',left='+LeftPosition+',scrollbars=0,resizable=0,toolbar=0,directories=0,menubar=0,status=0'
checkw=window.open('', 'check', settings)
    if (checkw != null) {
      if (checkw.opener == null) {
        checkw.opener = self;
      }
     checkw.location.href = "popup/anzeige.htm";
    }

}
