// Global Functions

// Popup windows
var popUpWin=0;
function popUp(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
//<a href="javascript:popUp('url.aspx', 0,0,400,400);">[Link Text]</a>
//
//<input type="text" value="Enter Text" onclick="this.value=''" onblur="this.value='Item or Keyword'" />
//
function wipeText(text)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

// Change Nav Background
function swapClass(objID,objClass){
var a;
a = document.getElementById(objID);
  if(a!= -1)
   {
      a.className = objClass;
   }
}
//
