function Validationkeyword(theform)
{
  if (theform.Keyword.value == "" || theform.Keyword.value == "Keyword or Item#")
  {
    alert("Please enter your search keyword.");
    theform.Keyword.focus();
    return (false);
  }
    return (true);
 } 
 
function displayWindow(url, width, height) {
      var url1 = 'bigimage.asp?pic=' + url + '&height=460&width=500';
	  var Win = window.open(url1,"",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no,status=no' );
	}
	
function OpenPopUp(url, width, height) {
	     var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=yes,status=no' );
	}
	
function clearemail(){
 document.frmSignup.subscribe_email.value = "";
} 	

function ValidateSignup(theform)
{
  if (theform.subscribe_email.value == "" || theform.subscribe_email.value == "enter your email address")
  {
    alert("Please Enter Your Email Address to Signup.");
    theform.subscribe_email.focus();
    return (false);
  }
    return (true);
 } 
	