function confirmLink(theLink, theMsg) {

    var is_confirmed = confirm(theMsg);
    if (is_confirmed) {
        //theLink.href += '&is_js_confirmed=1';
    }

    return is_confirmed;
}

function windowOpen(page,width,height) {
    myWindow = window.open(page,"windowRef",'resizable,scrollbars,height='+height+',width='+width);
    if (!myWindow.opener) myWindow.opener = self;
}

