function myOpenWin(html){
Popup = window.open(html,'Popup','width=740,height=450,toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no');
        Popup.focus();
}

function myOpenWin2(html){
Popup = window.open(html,'Popup','width=580,height=400,toolbar=no,location=no,directories=no,status=no,menubar=no, scrollbars=yes,resizable=no,copyhistory=no');
        Popup.focus();
}

function myOpenWin3(html){
Popup = window.open(html,'Popup','width=600,height=400');
        Popup.focus();
}
function openWindowPercent(newURL, percentX,percentY) {
        // Declare and initialize top and left variables
  // Update properties if comp. browser
          newHeight = 5*percentY;
        newWidth = 5*percentX;

    if (parseInt(navigator.appVersion) >= 4){
          newHeight = parseInt((screen.availHeight * percentY) /100);
          newWidth = parseInt((screen.availWidth * percentX) /100);
        }

  // Open the new window using top and left properties
  var newwin = window.open(newURL, 'remote', 'status=yes,toolbar=yes,menubar=no,location=no,scrollbars=yes,width=' + newWidth + ',height=' + newHeight  + ',resizable=yes');
        newwin.focus();
}

function closeWindow(){
        close()
}

function imprimirPagina() {
          if (window.print)
            window.print();
          else
            alert("!~!NO_POSIBLE_TO_PRINT!~!");
}

function PopUp()
{
        var URL = "/experia-cgi/:~:version:~:/viewhtml.pl?DescriptionFile=:~:DescriptionFile:~:&calling=news_popup_de&menudepth=2&language=de";
        var Name = "Supernews";
        var Fensteroptionen = "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0";
        var Breite = 250;
        var Hoehe = 200;
        window.open(URL, 'Name', Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
}

function openWindow_home_de(){
Popup = window.open(html,'Popup','width=580,height=400,toolbar=no,location=no,directories=no,status=no,menubar=no, scrollbars=yes,resizable=no,copyhistory=no');
        Popup.focus();
}

