// PRINT PAGE
function print_page()
	{
	if(self.print)self.print();else alert('Sorry but your browser does not support this in page print button. To print, select the print option from the browser\'s toolbar or pulldown menus.');
	}
// CLOSE WINDOW
function closeMe() {
  window.close(1)
}

// Search Form Input focus
function uSearchFocus(obj)
	{
		if (obj.value=="Search for...")
		{
			obj.value="";
		}
	}

//Popup windows for Calendar Events,member reg
function popitup(url)
  {
	newwindow=window.open(url,'name','height=490,width=450,menubar=no,scrollbars=yes,toolbar=no,location=no,directories=no,resizable=yes,top=50,left=50');
	if (window.focus) {newwindow.focus()}
	return false;
  }

// Contact us Form verify
// Note:if the contact us form is a second form on the page you need to change the document.forms[0] value from 0 to 1
function verify(){
    if(document.forms[0].verifycode.value!="y521"){
        alert("Please enter the verification code");
        return false;
        }else{
		 document.myform.submit();
        return true;
        }
  }
 
