	function openWindow (nameurl, namewindow, width, height) {

    x = (640 - width)/2, y = (480 - height)/2;
    if (screen) {
        y = (screen.availHeight - height)/2;
        x = (screen.availWidth - width)/2;
    }
    var prevwin = window.open(nameurl,namewindow,'width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x+',scrollbars=yes, resizable=yes');
    prevwin.focus();
	}
	
	// --- image popup with resize	
	function ShowPic(s)
	{
		var neu = open('', 'Bildchen', 'resizable=yes,width=10,height=10,left=50,top=50');
		with (neu.document) {
			open('text/html')
			writeln('<script language="JavaScript">')
			writeln('function resizeMe() {')
			writeln('with (document.Bildchens) {')
			writeln('if (complete) {')
			writeln('window.resizeTo(width + 40, height + 70)')
			writeln('window.focus()')
			writeln('} else {')
			writeln('window.setTimeout("resizeMe()", 500)')
			writeln('}}}')
			write('<\/script><html><head><title>Zum Schließen des Fensters aufs Bild klicken</title></head>')
			write('<body topmargin=0 leftmargin=0 bgcolor=gray onLoad="resizeMe()"><table width=100% height=100% cellpadding=0 cellspacing=0><tr valign=middle><td align=center><a href=javascript:self.close()><img src="' + s + '" alt="Zum Schließen des Fensters aufs Bild klicken" name=Bildchens border=no></a>')
			writeln('</td></tr></table></body></html>')
			close()
		}
	}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
