﻿/*
    Method shows window without any bars and panels.
    Url - address of opened page.
*/
function PopUp(url)
{
    window.open(url, "Window1", "menubar=no,width=760,height=650,toolbar=no");
    return false;
}

function ChangeImage(uniqueName)
{
    $("#mainPart > img").attr("src", uniqueName);
    return false;
}

function UpdateAllCheckBoxs()
{
    $(":parent.ni input[type='checkbox'],:parent.ni input[type='radio']").css
        ({display:"inline", width:"14px", border:"1", height:"14px"});
        
    $(":parent.ni label").css({display:"inline",width:"100px"}); 
}