function createWindow()
{
   NewWindow = window.open("announce.php",
   "TheWindow" ,
   "toolbar=no, width= 450, height = 600, top=10,left=10,directories=no,status=no,scrollbars=yes,resize=yes,menubar=no")
    NewWindow.focus()
}

/*function checkForm(searchform)
{
  if (searchform.search.value == "")
  {
    alert("Please enter some words to search our Quotebook database for.")
    return false;
  }
} */
function checkForm(searchform)
{
   if (document.searchform.search.value == "" && document.searchform2.search.value == "")
   {
      alert("Please enter some words to search our Quotes database for.")
      return false;
   }
}


function checkForm2(searchform)
{
   if (document.searchform.search.value == "")
   {
      alert("Please enter some words to search our Quotes database for.")
      return false;
   }
}

function createVoteWindow(id,type)
{  var ids = id
   var page = "rate.php?id=" + ids + "&t=" + type
   NewWindow = window.open(page,
   "TheWindow" ,
   "toolbar=no, width= 400, height = 300, top=10,left=10,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no")
    NewWindow.focus()
}

