<!-- /* Copyright 2007, Habib Krit, All Rights Reserved. */ -->

    function openSmallWindow(url) {
      window.open(url,'','width=450,height=450,left=600,top=200,scrollbars=1,menubar=1,resizable=1');
    }

    function openMediumWindow(url) {
      window.open(url,'','width=700,height=500,left=600,top=200,scrollbars=1,menubar=1,resizable=1');
    }

    function openFlatWindow(url) {
      window.open(url,'','width=700,height=300,left=600,top=200,scrollbars=1,menubar=1,resizable=1');
    }
    function validate(form) {
		form.recipient.value = "tillies_site@childpeacebooks.org";
		//alert("value is "+form.recipient.value);
		return true;
    }
