var navURL = new Array();
navURL["01"] = "index.html";
navURL["02"] = "aboutus.html";
navURL["03"] = "programs.html";
navURL["04"] = "volunteering.html";
navURL["05"] = "donations.html";
navURL["06"] = "generalinfo.html";
navURL["07"] = "researchinfo.html";
navURL["08"] = "reports.html";
navURL["09"] = "faqs.html";
navURL["10"] = "news.html";
navURL["11"] = "links.html";
navURL["12"] = "contactus.html";

navURL["03_A"] = "marine.html";
navURL["03_B"] = "land.html";
navURL["03_C"] = "hyperbaric.html";


// Preload all NAV images.
var img_bullet_on = new Image(12, 9);
var img_bullet_off = new Image(12, 9);

img_bullet_on.src = "images/general/nav/bullet_on.gif";
img_bullet_off.src = "images/general/nav/bullet_off.gif";



function rollOnOff(p_name, p_image, p_status)
{
   var imageReference = eval("document." + p_name);
   imageReference.src = eval(p_image + ".src");
   return statusText(p_status);
}


function statusText(text)
{
   window.status = text;
   return true;
}


function do_nav(p_index)
{
   document.location.href = navURL[p_index];
}


function openWindow(p_url)
{
   var winW = 600;
   var winH = 500;
   var winT = 30;
   var winL = 20;
   
   var win_new = window.open(p_url, "winNew", "width=" + winW + ",height=" + winH + ",toolbar=0,location=1,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,copyhistory=0,top=" + winT + ",left=" + winL);
   win_new.focus();
}
