/* Copyright 20001 by zwergkaninchen.info. All rights reserved. */

function openWindow(URL,x,y) 
{
	var newWin;
	if ( (navigator.userAgent.indexOf('MSIE') != -1) || (navigator.userAgent.indexOf('Netscape6') != -1) ) {
		n=x;
		m=y;
	}
	else {
		n = parseInt(x)-10;
		m = parseInt(y)-30;
	}
	var posx = screen.width/2 - n/2;		
	var posy = screen.height/2 - m/2;
	var propsZ=(document.all)?('top=' + posy + ',left=' + posx):('screenX=' + posx + ',screenY=' + posy);
		
	props = 'toolbar=0,location=0,directories=0,status=0,width=' + n + ',height=' + m + ',menubar=0,scrollbar=no,resizable=0' + propsZ;
	newWin = window.open(URL,'pernice',props);
	newWin.resizeTo(n,m);
	newWin.moveTo(posx,posy);
	newWin.focus();
} 
