function openWindow(name,width,height) {
 iMyWidth = (window.screen.width/2) - (324)
 iMyHeight = (window.screen.height/2) - (275)
 fokus = 'f = window.open("","' + name + '", "width=' + width + ',height=' + height + ',resizable=no,left=' + iMyWidth + ',top=' + iMyHeight + ',screenX=' + iMyWidth + ',screenY=' + iMyHeight + ',scrollbars=1")';
 //alert(fokus);
 eval(fokus);
 f.focus();
}



function m(n)
{
    var v = document.getElementById("href"+n).style.display;

    if (document.getElementById("href"+n).style.display=="none")
    {
        document.getElementById("href"+n).style.display = "block";


    }
    else
    {
        document.getElementById("href"+n).style.display = "none";

    }
}

