

function isForm() {

    var agt=navigator.userAgent.toLowerCase()
	this.major = parseInt(navigator.appVersion)
	this.win   = (agt.indexOf("win")!=-1)
	this.mac    = (agt.indexOf("mac")!=-1)
	this.nav  = ((agt.indexOf('mozilla')!=-1) && ((agt.indexOf('spoofer')==-1) && (agt.indexOf('compatible')==-1)))
	this.nav3 = (this.nav && (this.major == 3))
	this.nav4 = this.nav && (this.major == 4)
	this.nav6 = this.nav && (this.major >= 5)
	this.ie   = (agt.indexOf("msie") != -1)
	this.ie3  = (this.ie && (this.major == 2))
	this.ie4n5  = this.ie  && (this.major == 4)
	this.ie5up = this.ie  && (this.major >= 5)
 }


var isForm;
isForm = new isForm();

function Fenster(page) 
			{
			if (self.screen) { 
            sw = screen.width
            sh = screen.height
            w = 420;
			h = 310;
          
		    //if (isForm.win && isForm.nav4) {w = 500;h=355;}
			//else if (isForm.win && isForm.ie4n5) {w = 500;h=355;} 
			//else if (isForm.win && isForm.ie5up) {w = 500;h=355;} 
			//else if (isForm.mac && isForm.nav) {w = 500;h=355;} 
			//else if (isForm.mac && isForm.nav6) {w = 500;h=355;} 
			//else if (isForm.mac && isForm.ie4n5) {w = 500;h=355;} 
			//else if (isForm.mac && isForm.ie5up) {w = 500;h=355;} 

			cx = (.7*sw) - (w*.5)
			cy = (.3*sh) - (h*.5)
    		//var  para = 'status=no,scrollbars=no,resizable=no,directories=no,menubar=0,width=420,height=310';
			var  para = 'status=no,scrollbars=no,resizable=no,directories=no,menubar=0,width='+w+','+'height='+h+',' + 'screenX=' +cx+','+'screenY='+cy+','+'left='+cx+','+'top='+cy
            }

 Pop=window.open(page,"Strauss",para);   

}
