function extract(what) {
   if (what.indexOf('/') > -1)
       answer = what.substring(what.lastIndexOf('/')+1,what.length);
   else
       answer = what.substring(what.lastIndexOf('\\')+1,what.length);
    document.Form.txtServername.value = answer;
    document.Form.uplTheFile.value = what;
}
