 function dn(){    

 }

 function printPage(){
    window.open(location.href + "&action=print",'print','width=650,height=550,status=yes,scrollbars=yes,location=no,toolbars=yes');
 }
 function confirmDelete(fname)
  {
    if (confirm('Are you sure?'))
    {
      return true;
    }
    return false;
  }
 function copySelToTxt(srcSel, trgTxt){
   if(srcSel.selectedIndex > 0){
    trgTxt.disabled=true;
    trgTxt.value = srcSel.options[srcSel.selectedIndex].text;
   }else{ 
    trgTxt.disabled=false;
    trgTxt.value = "";
   }
 }
 function chkChange(objChk, url){
    var val = 0;
    if(objChk.checked == true) val=10;
    window.location = url + '&val=' + val;
 }
function fm_filter(url){
   o=document.getElementById('owner');
   f=document.getElementById('folder');
   location= url + '&owner=' + o.options[o.selectedIndex].value + '&folder=' + f.options[f.selectedIndex].value;
 }