function searchClicked(form)
   {
    if (form.s.value=='')
    {
        alert("Please enter search words");
        return false;
    }
    return true;
}
function openup(newpage) 
{
    window.open(newpage, "_blank", "width=620, height=600, scrollbars=yes, resizable=yes, toolbar=no, status=no, location=no, menubar=no");
}

function newWindow(htmlfile) 
{
	htmlWindow = window.open(htmlfile, 'newWin', 'width=600,height=520,toolbar=no,scrollbars=no')
	htmlWindow.focus()
}

function bigNewWindow(htmlfile) 
{
	htmlWindow = window.open(htmlfile, 'newWin2', 'width=600,height=640,toolbar=no,scrollbars=no')
	htmlWindow.focus()
}
