var ofile = "";
function buttPushIE(obj)    {    document.all[obj.id].style.posLeft = 4;
                                 document.all[obj.id].style.posTop  = 4}
function buttUnPushIE(obj)  {    document.all[obj.id].style.posLeft = 0;
                                 document.all[obj.id].style.posTop  = 0}
 
function buttPushNS(obj)    {    document[obj.name].posLeft = 4;
                                 document[obj.name].posTop  = 4}
function buttUnPushNS(obj)  {    document[obj.name].posLeft = 0;
                                 document[obj.name].posTop  = 0}

function popUp(Page)        {
                             if ( Page.id == "wr1a")  ofile = "Wr/bbb.html";
                             if ( Page.id == "wr1b")  ofile = "Wr/Plumb.html";
                             if ( Page.id == "wr1c")  ofile = "Wr/Comoy.html";
                             if ( Page.id == "wr1d")  ofile = "Wr/GBD.html";
                             if ( Page.id == "wr2")   ofile = "Wr/masters.html";
                             if ( Page.id == "wr3")   ofile = "Wr/Rost.html";
                             if ( Page.id == "wr4")   ofile = "Wr/B_pipes.html";
                             if ( Page.id == "wr5")   ofile = "Wr/Mac_Baren.html";
                             if ( Page.id == "wr6")   ofile = "Wr/S_pipes.html";
                             if ( Page.id == "wr7")   ofile = "Wr/kubokP.html";
                             if ( Page.id == "cipc")  ofile = "cipc.html";
                             if ( Page.id == "pita")  ofile = "pita.html"; 
                             if ( Page.id == "leter") ofile = "Toelating.html";
                             popWin(ofile);}

function popWin(ofl){
         var Bars     = "directories=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no";
         var oOptions = "scrollbars=yes,width=790,height=900,resizable=no,screenY=1,screenX=1";
         var Features = (Bars) + "," + (oOptions);
         open(ofl, "myDoc", Features);}

