function openWindow(url, name){
	document.getElementById("chiliweb").href="index.php?page=Login";
	
	width = screen.availWidth-5;
	height = screen.availHeight-40;
	if (navigator.userAgent.toLowerCase().indexOf('msie') == -1) {
		url = url + "?width="+(width-8)+"&height="+(height-8)
	}
	else if (typeof document.body.style.maxHeight != "undefined") { // IE 7
          // height = height -20;
	}

	//alert(document.getElementById("chiliweb").href);	
	fenster=window.open(url, name, "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no, resizable=yes,width="+width+",height="+height);
	fenster.moveTo(0,0);
	fenster.focus();
}
