var n6,ie,n;
ie=n=n6=0;
if (document.layers) {n=1;ie=0}
if (document.all) {n=0;ie=1}
if ((!document.all)&&(document.getElementById)) {n6=1;n=0;ie=0}
//alert("NE6"+n6+"\nNE"+n+"\nIE"+ie);
function popupon(text, eventObj, breite) 
{ 
  ieLayer = 'document.all[\'popup\']';
  nnLayer = 'document.layers[\'popup\']';
  n6Layer = 'document.getElementById[\'popup\']';

//-- Start Editable Area --
		var x2=(n)?window.innerWidth/2:document.body.clientWidth/2
		var y2=(n)?window.innerHeight/2:document.body.clientHeight/2
  		bgColor = '#ffffff';
  		width_TB = breite - 5;
        Font = 'face="Verdana, Arial, Helvetica, sans-serif" size=2, color=#146BB2';
		OffsetHO = x2-200;
		OffsetVE = y2-120;
		if( (x2==390) || (x2==398) )
		{
			if((text.substring(24,28))=="Core")
				OffsetVE = y2-180;
		}
	
//-- End Editable Area --

  if (!(ie || n || n6)) return;
  if (ie) document.popup = eval(ieLayer); 
  if (n) document.popup = eval(nnLayer);

   var table = "";
      
    table += '<table width=' + breite + ' border="0" cellspacing="0" cellpadding="0" bgcolor='+ bgColor +'><tr><td>';
    table += '<table width=' + width_TB + ' border="1" cellspacing="0" cellpadding="5" bgcolor='+ bgColor +' bordercolor="#146BB2" vspace="0" hspace="0">';
    table += '<tr><td align="LEFT" valign="TOP"><font '+  Font +'>';
	table += text + '</font>';
	table += '<div align="center"><form class="eng"><input type=button value="Close" onClick="popupoff()"></form></div></td></tr></table>';
    table += '</td><td width="5" background="global/Transp_schatten_rechts.gif"><img src="global/nix.gif" width=5 height=5 border=0></td></tr><tr>';
  	table += '<td width=' + width_TB + ' height="5" background="global/Transp_schatten_unten.gif"><img src="global/nix.gif" width=5 height=5 border=0></td>';
    table += '<td background="global/Transp_schatten.gif"><img src="global/nix.gif" width=5 height=5 border=0></td></tr></table>';
   
  if (ie) 
    { // If IE4+
    document.popup.innerHTML = table;
    document.popup.style.left = OffsetHO;
    document.popup.style.top  = AboutUs.scrollTop+OffsetVE;
    document.popup.style.visibility = "visible";
    } 
  if(n) 
    { // If NN4+
    document.popup.document.open();
    document.popup.document.write(table);
    document.popup.document.close();
    document.popup.left = OffsetHO-2;
    document.popup.top  = top.pageYOffset+OffsetVE-2;
    document.popup.visibility = "visible";
  }
  if (n6) 
    { // If NE6
    document.getElementById("popup").innerHTML = table;
    document.getElementById("popup").style.left = window.innerHeight/2; //OffsetHO;
    document.getElementById("popup").style.top  = 120; //OffsetVE;
    document.getElementById("popup").style.visibility = "visible";
    } 
}

function popupoff() 
{ 
  if (!(ie || n || n6)) return;
  if (null == document.popup) 
  {
  }
  if (ie) document.popup.style.visibility = "hidden";
  if(n) document.popup.visibility = "hidden";
  if(ie || n) document.popup = null;
  if(n6){
   document.getElementById("popup").innerHTML = '';
   document.getElementById("popup").bgcolor = '';
   document.getElementById("popup").style.left = 0; //window.innerWidth;
   document.getElementById("popup").style.top  = window.innerHeight;
  }
}
