



function printMessage(){
window.status='Print this article using CSS';
return true;
}

function printMessageOut(){
window.status='';
style="cursor:hand";
return true;
}


function printDetect(){
    var lBrow, lStr, lVer, lVerM, lVerS;

    lStr='';
    lBrow=navigator.appName;
    lVerS=navigator.appVersion;
    lVer=lVerS.substring(0,1);
    lVerM=lVerS.substring(22,23);
    //alert(lBrow +"/"+ lVerS +"/"+ navigator.platform);
    if (lVer >= '4')
         if (lBrow == 'Netscape')
              window.print();

    if (lBrow == 'Microsoft Internet Explorer')
    {
         if (lVerM >= '5')
              window.print();
         else
              (alert("Press Ctrl-P for Windows or Command-P for Macintosh to print this page.") );
    }
return true;
}


