// jQuery noConflict
var wfosigw = jQuery



function Otworz(url) {

testwindow= window.open (url, "mywindow",
    "location=1,status=1,scrollbars=1,width=400,height=500");
testwindow.moveTo(0,0);


}

function OtworzPopupa(url) {

    var width = 460;
    var height = 330;
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var windowFeatures = "width=" + width + ",height=" + height + ",status,resizable,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
    myWindow = window.open(url, "subWind", windowFeatures);
}

function PokazMenu(e) {

    wfosigw('#'+e).toggle();

}
