//<!--

function ShowMap() {
	var s = 720;
	var v = 550;
	var clW;
	var clH;	
	
	//zjisti rozliseni cele obrazovky
	clW = screen.width;
	clH = screen.height;
	
	var winl = (clW - s) / 2;
	var wint = (clH - v) / 2;
	
	w_map = window.open('map.asp', 'aspekta_schema', 'scrollbars=yes,resizable=yes,width='+s+',height='+v+',left='+winl+',top='+wint+',screenX='+winl+',screenY='+wint);
	w_map.window.focus();
}


var an=2000;      // Zeit in Millisekunden - hier also 2 Sek. bis das PopUp-Fenster aufgeht.
var aus=0;    // dto. wie lange das Fenster offen bleiben soll. (hier z.B. 10 Sek.) geben Sie 0 (Ziffer Null) ein wenn es offen bleiben soll.
var x=400; y=50;  // wo soll das PopUp-Fenster erscheinen ?

function auf() {
	om=window.open("http://orea-med.de/neu/oreamedPopup.htm","","width=300 height=400 left="+x+" top="+y);
	om.focus();
	if (aus>0) setTimeout("om.close()",aus);
}

//setTimeout("auf()",an); 


// -->