<!--

function fOpenPage(s)
{	
window.open('../' + s,TARGET="ContentArea");
}

function fOpenPage2(s)
{	
window.open(s,TARGET="ContentArea");
}

function pOpenPage(s)
{	
window.open('http://' + s,TARGET="ContentArea");
}
function fOpenPageTargetNew(s)
{	
window.open('http://' + s,TARGET="New");
}

function toggle_visibility(id) {
  var e = document.getElementById(id);
  if(e.style.display == 'block')
      e.style.display = 'none';
   else
      e.style.display = 'block';
 }


//-->
