MSV FM

dot.antimicrobial@66.96.161.157: ~ $
Path : /hermes/sb_web/b1536/advancedfunctions.co/safespacehelpworkingversiondonotedit/
File Upload :
Current < : //hermes/sb_web/b1536/advancedfunctions.co/safespacehelpworkingversiondonotedit/selectOnlyOne.js

function selectOnlyOne(elementId){
if(pageMode=='admin'){
var adminPanels=['therapists','patients'];
var adminPanelSelected=false;
for(var i=0;i<adminPanels.length;i++){
if(elementId==adminPanels[i]&&document.getElementById(elementId).style.display=='none'){
document.getElementById(adminPanels[i]).style.display='block';
adminPanelSelected=true;
}else{
document.getElementById(adminPanels[i]).style.display='none';}
}

if(!adminPanelSelected){
document.getElementById('adminViewAreaScreen').style.display='none';
}else{
document.getElementById('adminViewAreaScreen').style.display='block';}
}


if(pageMode=='patient'){
var patientPanels=['myProfile','chatWindow','partnerProfile','live','resources','contacts'];
for(var i=0;i<patientPanels.length;i++){
if(elementId==patientPanels[i]&&document.getElementById(elementId).style.display=='none'){
document.getElementById(patientPanels[i]).style.display='block';
}else{
document.getElementById(patientPanels[i]).style.display='none';}
}
}

if(pageMode=='therapist'){
var therapistPanels=['myProfile','partnerProfile','patientsProfile','contacts','resources','live','chatWindow'];
var therapistPanelSelected=false;
for(var i=0;i<therapistPanels.length;i++){
if(elementId==therapistPanels[i]&&document.getElementById(elementId).style.display=='none'){
document.getElementById(therapistPanels[i]).style.display='block';
therapistPanelSelected=true;
}else{
document.getElementById(therapistPanels[i]).style.display='none';}
}
if(!therapistPanelSelected){
document.getElementById('therapistViewAreaScreen').style.display='none';
document.getElementById('therapistDisplay').style.display='none';
}else{
document.getElementById('therapistViewAreaScreen').style.display='block';
document.getElementById('therapistDisplay').style.display='block';}

}

}

function closeAllOpenedDialogs(){
if(pageMode=='therapist'){
var therapistPanels=['myProfile','partnerProfile','patientsProfile','contacts','resources','live','chatWindow'];
for(var i=0;i<therapistPanels.length;i++){
document.getElementById(therapistPanels[i]).style.display='none';
}
document.getElementById('therapistViewAreaScreen').style.display='none';
}
}