/** 
 * ruft die viren-informationen auf.
*/
function PopupViren() {
	launch("vireninfo_grafik.htm",700,500,"scrollbars=no");
}

/** 
 * lädt ein popup.
 * @param url Url
 * @param breite (default 700px)
 * @param höhe (default 500 px)
 * @param zusätzliche optionen
 * @return void
 * @access public
*/
function launch(seite,b ,h , optionen) {
	var ns6 = (!document.all && document.getElementById);
	var ie4 = (document.all);
	var ns4 = (document.layers);

	if(!b) {
		b = 700;
	}
	if(!h) {
		h = 500;
	}
	if(!optionen) {
		optionen = "scrollbars=no,";
	}

	if(ns6||ns4) {
		sbreite = innerWidth;
		shoehe = innerHeight;
	} else if(ie4) {
		sbreite = document.body.clientWidth;
		shoehe = document.body.clientHeight;
	}

	x = (sbreite-b)/2;
	y = (shoehe-h)/2;
	eigenschaften= optionen + "left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+h;
  	F = window.open(seite,"Popup",eigenschaften);
  	F.focus();
	
}