// This method is used to 
function openWindow(URL)
{
    NewWindow = window.open(URL, "Dachsimulator", "width=980,height=520,status=yes,scrollbars=yes,resizable=yes");
    NewWindow.focus();

    return false;
}


