// JavaScript Document
function infopopscroll(w,h,page,resize)
{
wintype = "location=0,scrollbars=1,status=0,menubar=1,resizable="+resize+",left=0,top=0,screenx=0,screeny=0,width="+w+",height="+h;
win=window.open(page,"newwin",wintype); 
win.focus();
}

function dosearch()
{
var searchfor = window.document.forms.searchform.searchterm.value;
if(searchfor == "")
{window.alert("SEARCH ERROR - \n\nYou have not entered any word(s) to search for....");}
else
{window.document.forms.searchform.submit();}
}