function youGotMail()
{
    if (confirm('YOU GOT NEW PRIVATE MESSAGE(S)!!!\n\nCheck your private message(s) now?'))  {   
        location.href='../profile/index.php?action=inbox';
    }
//   alert("TEST");
}

function openNewWin(myURL, myTarget, myWidth, myHeight)
{
   var left = (screen.width - myWidth) / 2;
   var top = (screen.height - myHeight) / 2;
   var option = "width = " + myWidth + ", height = " + myHeight + ", top = " + top + ", left=" + left;
   var newWindow = window.open(myURL, myTarget, option); 
   newWindow.focus();
}


function setMeFocus(myForm, myID)
{
   document.forms[myForm].myID.focus();
}


function goto(url) {
       window.location=url;
}

function display(termID) {
	var termToExp = document.getElementById(termID);
	if (termToExp !=null) {
		termToExp.style.display = "";
	}
}

function hide(termID) {
	var termToExp = document.getElementById(termID);
	if (termToExp !=null) {
		termToExp.style.display = "none";
	}
}

function toggleMe(a){
  var e=document.getElementById(a);
  if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block"
  } else {
    e.style.display="none"
  }
  return true;
}
