// JavaScript Document

var popUpWin=0;
function newWindow(URLStr, width, height) {
  if(popUpWin) {
     if(!popUpWin.closed) popUpWin.close();
  }
if (!width) width = 640;
if (!height) height = 480;
var x = (screen.width/2)-(width/2);
var y = (screen.height/2)-(height/2);
popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+x+', top='+y);

}


var GB_ROOT_DIR = "http://aerzte-coaching.net/greybox/";
var ROOT_DIR = "http://aerzte-coaching.net/";

function startPopup() {
	document.cookie = "";
	if (document.cookie) return;
	else {
		var date = new Date();
		var expire = date.getTime() + (1 * 2 * 60 * 60 * 1000); // 2 stunden
		date.setTime(expire);
		document.cookie = "expires=" + date.toGMTString();
		return GB_showCenter('Informationen', ROOT_DIR+'vorschau/start_auswahl.htm', 480, 640);
	}
}
