/*
    // This function moved to js/commonApp.js by Vedran
function new_window(URL) {
    try {
        var left=screen.width-265;
        var top=screen.height-798;
        other='width=210px,height=500px,scrollbars=yes,status=no,left='+left+'px,top='+top+'px';
        window.open(URL,'_blank',other)
    } catch(E) {}
}
*/
function show(divId){
    try {
        div=document.getElementById(divId);
        if (div.style.display == "none")
        {
            div.style.display="block";
        }
        else{
            div.style.display="none";
        } 
    } catch(E) {}
}
