
  function aces_window(child)
     	       {
  CHILD = window.open(child, "CHILD", 'directories=yes,location=yes,menubar=yes,status=yes,scrollbars=yes,toolbars=yes,resizable=yes,width=700');
     	       }


function rainfall_window(child)
     	       {
  CHILD = window.open(child, "CHILD", 'directories=yes,location=no,menubar=yes,status=yes,scrollbars=yes,toolbars=yes,resizable=yes,width=525');
     	       }

function garden_window(page)
     	       {
  PAGE = window.open(page, "PAGE", 'directories=no,location=no,menubar=no,status=yes,scrollbars=yes,toolbars=no,resizable=yes,height=470",width=540');
     	       }
function garden_smallwindow(page)
     	       {
  PAGE = window.open(page, "PAGE", 'directories=no,location=no,menubar=no,status=yes,scrollbars=yes,toolbars=no,resizable=yes,height=450",width=280');
     	       }

function validate()
{
if (document.contactform.email.value.length < 3)
	{
	window.alert("Please enter an email address, so I can reply to you. Thanks");
    	document.contactform.email.focus();
	return false;
	}

if (document.contactform.comments.value.length < 1)
	{
	window.alert("Oops - you are trying to submit without entering your message");
    	document.contactform.comments.focus();
	return false;
	}

return true;
}