var myimages=new Array()
function preloadimages(){
for (i=0;i<preloadimages.arguments.length;i++){
myimages[i]=new Image()
myimages[i].src=preloadimages.arguments[i]
}
}


preloadimages("/images/nav/home_on.gif","/images/nav/fishing_on.gif","/images/nav/diving_on.gif","/images/nav/prices_on.gif","/images/nav/news_on.gif")
}


function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 



function openWindow(windowURL,windowName,windowWidth,windowHeight) {
  window.name = 'parentWnd';
  newWindow = window.open(windowURL,windowName,'width='+windowWidth+',height='+windowHeight+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1');
  newWindow.focus();
}

