function confirmLink(theLink, theText){
    // Confirmation is not required if the browser is Opera (crappy js implementation)
    if (typeof(window.opera) != 'undefined') {return true;}
    var is_confirmed = confirm(theText);
    if (is_confirmed) {theLink.href += '&is_js_confirmed=1';}
    return is_confirmed;
} // end of the 'confirmLink()' function

function printWindow() {
    Browser = parseInt(navigator.appVersion);
    if (Browser >= 4) window.print();
}

self.name="drk";

