function classToggle(element,class1,class2) {
    if ( document.getElementById(element).className==class1) {
        document.getElementById(element).className = class2;
        document.location.href = 'index.php?p=3-2-1&v=1'
    }
    else if (document.getElementById(element).className==class2) {
    	  document.getElementById(element).className = class1;
    }
}

function fcLoginForm() {
    if((document.myFormLogin.fmUserName.value != "") && (document.myFormLogin.fmPassword.value != "")) {
        return true;
    }
    else if(document.myFormLogin.fmUserName.value == "") {
        document.myFormLogin.fmUserName.focus();
        return false;
    }
    else {
        document.myFormLogin.fmPassword.focus();
        return false;
    }
}

function fcDownload(pFile) {
  //document.location.href = './download.php?f='+ pFile;
  
  var url = './download.php?f='+ pFile;
  window.open(url, 'Download');
}
