// JavaScript Document

function confirmLink(theLink, theSqlQuery)
{
    // Confirmation is not required in the configuration file
    if (confirmMsg == '') {
        return true;
    }

    var is_confirmed = confirm(confirmMsg + ' :\n' + theSqlQuery);
    if (is_confirmed) {
        theLink.href += '&is_js_confirmed=1';
    }

    return is_confirmed;
}

function open_window(link, width, height)
{
     window.open(link,"","toolbar=0,top=0,scrollbars=yes");
}

function open_new_window(link, width, height) {
left = (screen.width-width)/2;/////////// alinierea
if(screen.height<610){height=580;}///////  ferestrei
else if(screen.height<770){height=705;}//   in centru shi modificare inaltimii 
 window.open(link,"","top=0,left="+left+",scrollbars=yes, width="+width+",height="+height+"");
}
