<!--

var neues;
var didopen=false;

function bigchat(theURL,winName) { 
    if  (didopen)  neues.close();
	didopen=true;
 features = "width=800,height=500,scrollbars=no,resizable=yes";
 neues = window.open(theURL,"chat",features);
}

function mailbox(theURL,winName) { 
 features = "width=800,height=500,scrollbars=yes,resizable=yes";
 neues = window.open(theURL,"mail",features);
}

function html_code(theURL,winName) { 
    if  (didopen)  neues.close();
	didopen=true;
 features = "width=500,height=250,scrollbars=yes,resizable=no";
 neues = window.open(theURL,"displaywindow",features);
}

function vorschau(theURL,winName) { 
    if  (didopen)  neues.close();
	didopen=true;
 features = "width=800,height=800,scrollbars=yes,resizable=yes";
 neues = window.open(theURL,"vorschau",features);
}

function rangliste(theURL,winName) { 
    if  (didopen)  neues.close();
	didopen=true;
 features = "width=1000,height=770,scrollbars=yes,resizable=yes";
 neues = window.open(theURL,"rangliste",features);
}

function openPaymentPopup(url) { 
  newwindow = window.open(url, 'callandpay', 'height=404,width=320,resizable=no,menubar=no,status=no,location=no,toolbar=no,titlebar=no,scrollbars=no,directories=no'); 
  if (window.focus) {newwindow.focus();} 
}

//-->
