// JavaScript Document
function gotoURL(url)
{
   window.location=url;
}

function displayMessage()
{
   alert("This is an example and cannot send an e-mail.");
}

function targetBlank (url) 
{
  blankWin = window.open(url,'_blank','menubar=yes,toolbar=yes,location=yes,directories=yes,fullscreen=no,titlebar=yes,hotkeys=yes,status=yes,scrollbars=yes,resizable=yes');
}



