
function wopen(url,winX,breite,hoehe) {
   win1 = window.open(url,winX,"width=" +breite+",height="+hoehe);
   check();
}
function check() {
   if (win1 == null) return;
   if (win1.focus != null) win1.focus();
}

function wClose() {
   window.close(self);
}

function win_open(url,winX,breite,hoehe) {
   //winmv = window.open(url,winX,"width=" +breite+",height="+hoehe);
   winmv = window.open(url,winX,"scrollbars=yes,width=" +breite+",height="+hoehe);
   winmv.erzeuger=self;
   mvcheck();
}


function mvcheck() {
   if (winmv == null) return;
   if (winmv.focus != null) winmv.focus();
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

function testit() {
	return true;
}
