<!--
function setBigIMG(newSRC){
  document.getElementById("displayPhoto").src = newSRC;
}

function popUp(URL,w,h) {
if(typeof  w  == 'undefined'){ w = 600; }
if(typeof  h  == 'undefined'){ h = 400; }
var day = new Date();
var id = day.getTime();
eval("page" + id + " = window.open('" + URL + "','" + id + "', 'toolbar=auto,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + w + ",height=" + h + ",left = 340,top = 312');");
}

function showLoginBox() {
  $("loginForm").style.display = "block";
  $("loginStatus").style.display = "none";
  $("usernameBox").focus();
}

function showLangSelect() {
    $("loginStatus").style.display = "none";
   $("languageSelect").style.display = "block"; 
}


function collapseToggle(divId) {
    var div = $$("#" + divId + " .paneContents")[0];
    div.style.display = (div.style.display=="none"?"block":"none");
}

function profileClick(divarea) {

}

function profileOver(divarea, isOver) {

}

//  -->
