function mainmenu()
{
    $(" #nav ul ").css({display: "none"}); // Opera Fix
    $(" #nav li").hover(function(){
            $(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400);
            },function(){
            $(this).find('ul:first').css({visibility: "hidden"});
            });
}

function OpenPopUpWindow(WindowLink,WindowTitle,WindowWidth,WindowHeight)
{
window.open(WindowLink,WindowTitle,'toolbar=0,width='+WindowWidth+',height='+WindowHeight+',location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0');
}

function OpenResizablePopUpWindow(WindowLink,WindowTitle,WindowWidth,WindowHeight)
{
window.open(WindowLink,WindowTitle,'toolbar=0,width='+WindowWidth+',height='+WindowHeight+',location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0');
}

function ShowWgHinweis() {
    $('#ctl00_ContentPlaceHolder1_Artikelinfo1_divWgHinweis').dialog();
}
