// JavaScript Document
//***********************************
//	This is the BASIC Javascript File
//	for the Courtage Server 2008
//
//************************************
function Click_obj(objName) {
    if (document.getElementById(objName).style.display=="")
          {document.getElementById(objName).style.display="none";}
     else
          {document.getElementById(objName).style.display="";}
}
//
function openApp(site, windowname, w, h){

  var width=w, height=h;

  var left = (screen.width/2) - width/2;

  var top = (screen.height/2) - height/2;

  var styleStr = 'toolbar=no,location=no,modal=yes,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;

 if (typeof msgWindow != 'undefined' && !msgWindow.closed){
 	
 	msgWindow.close();
 	msgWindow = window.open(site, windowname, styleStr);
 	//alert('Dieses Fenster ist schon geöffnet. Überprüfen Sie Ihre Task-Leiste!');
 
 }else{
  	
 	msgWindow = window.open(site, windowname, styleStr);
 
 }
  
}

function openAppScroll(site, windowname, w, h){

  var width=w, height=h;

  var left = (screen.width/2) - width/2;

  var top = (screen.height/2) - height/2;

  var styleStr = 'toolbar=no,location=no,modal=yes,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;

 if (typeof msgWindow != 'undefined' && !msgWindow.closed){
 	
 	msgWindow.close();
 	msgWindow = window.open(site, windowname, styleStr);
 	//alert('Dieses Fenster ist schon geöffnet. Überprüfen Sie Ihre Task-Leiste!');
 
 }else{
  	
 	msgWindow = window.open(site, windowname, styleStr);
 
 }
  
}