var go = 1;

function openERTApplication(url)
{
    ertapp =
     window.open(url, 'eDEapp', 'location=no,menubar=no,toolbar=no,resizable=yes,status=yes,scrollbars=yes,width=800,height=600,left=50,top=50"', true);
}


function openRandoApp(url)
{
    randoApp =
     window.open(url, 'RandoApp', 'location=no,menubar=no,toolbar=no,resizable=yes,status=yes,scrollbars=yes,width=800,height=600,left=50,top=50"', true);
}

function check()
{
 return go? true : false;
}

function changeStat(stat, id)
{
 go    =  stat;
 if(document.getElementById){
  if(!go) {
    document.getElementById(id).style.textDecoration =  "none";
    document.getElementById(id).style.color          =  "#C0C0C0";
  }
  else {
    document.getElementById(id).style.textDecoration =  "underline";
    document.getElementById(id).style.color          =  "#0e437b";
  }
 }
}