function parent2()
{
var form_names = new Array ();
form_names[0] = "Name";
form_names[1] = "DayPhone";
form_names[2] = "EveningPhone";
form_names[3] = "Email";
form_names[4] = "HolidayFair";
form_names[5] = "MayFair";
form_names[6] = "CoffeeHouse";
form_names[7] = "Grand";
form_names[8] = "ForestShop";
form_names[9] = "Diversity";
form_names[10] = "CommunityLife";
form_names[11] = "Auction";
form_names[12] = "Class";
form_names[13] = "PTA";
form_names[14] = "MarketingGraphic";
form_names[15] = "MarketingWeb";
form_names[16] = "MarketingOpenHouse";
form_names[17] = "MarketingOutreach";
form_names[18] = "MarketingAlumni";
form_names[19] = "DevelopmentGrant";
form_names[20] = "DevelopmentPR";
form_names[21] = "DevelopmentCapitalCampaign";
form_names[22] = "DevelopmentAnnualFund";
form_names[23] = "FacilityMaintenance";
form_names[24] = "FacilityGrounds";
form_names[25] = "FacilityGardening";
form_names[26] = "InterestsFacePainting";
form_names[27] = "InterestsCookBake";
form_names[28] = "InterestsCarpentry";
form_names[29] = "InterestsMusician";
form_names[30] = "InterestsSubstitute";
form_names[31] = "InterestsEurythmySetup";
form_names[32] = "InterestsDataEntry";
form_names[33] = "InterestsMassMailings";
form_names[34] = "InterestsLiceBusters";
form_names[35] = "InterestsLeaves";
form_names[36] = "InterestsLibrary";
form_names[37] = "InterestsChildCare";
form_names[38] = "InterestsFlowerArranging";
form_names[39] = "InterestsPhotography";
form_names[40] = "InterestsAftercareSubstitute";
form_names[41] = "InterestsCostumeCloset";
form_names[42] = "InterestsOfficeAssistance";
form_names[43] = "InterestsYearbook";
form_names[44] = "InterestsParentHandwork";

if (document.info.SecondParent.checked == true)
  {
	  for (var i = 0; i < form_names.length; i++) 
	  {
	eval("document.info."+form_names[i]+"Parent2.style.visibility = 'visible'");
	  }
  }
 else
 {
	  for (var i = 0; i < form_names.length; i++) 
	  {
	eval("document.info."+form_names[i]+"Parent2.style.visibility = 'hidden'");
	  }
 }
}

function getquote()
{
var r_text = new Array ();
r_text[0] = "[We] must cast aside the division into races. [We] must seek to unite people into all races and nations, and to bridge the divisions and differences between various groups of people.";
r_text[1] = "Confidence is one of the golden words that must govern social life in the future.  The other golden word is love, love of that which we have to do.  And in the future. good deeds will be done out of love for humanity.";
r_text[2] = "A spirit of respect permeates the school.";
r_text[3] = "If I had a child of school age, I would send him to one of the Waldorf Schools.";
r_text[4] = "My children are learning to think.  What could be more relevant in today's world?";
r_text[5] = "Being personally acquainted with a number of Waldorf students, I can say that they come closer to realizing their own potential than practically anyone I know.";
r_text[6] = "It is aliveness that must be the guiding principle.  Joy and happiness in living, a love of all existence, a power and energy for work.... The need for imagination, a sense of truth and a feeling of responsibility &#151; these are the three forces which are the very nerve of education.";

var r_citation  = new Array ();
r_citation[0] = "Rudolf Steiner";
r_citation[1] = "Rudolf Steiner";
r_citation[2] = "Second-Grade Parent";
r_citation[3] = "Saul Bellow";
r_citation[4] = "Fourth-Grade Parent";
r_citation[5] = "Joseph Weizenbaum";
r_citation[6] = "Rudolf Steiner";

var i = Math.round(6*Math.random());

document.write ("<div align='center'><i>&#147;"+r_text[i]+"&#148;<i><br><br><i><b>"+r_citation[i]+"</b></i></div>");

}

function lastmod()
{
document.write(date_lastmodified());
}

function date_mmmddyy(date)
{
  var d = date.getDate();
  var m = date.getMonth() + 1;
  var y = date.getYear();

  // handle different year values 
  // returned by IE and NS in 
  // the year 2000.
  if(y >= 2000)
  {
    y -= 2000;
  }
  if(y >= 100)
  {
    y -= 100;
  }

  var mmm = 
    ( 1==m)?'Jan':( 2==m)?'Feb':(3==m)?'Mar':
    ( 4==m)?'Apr':( 5==m)?'May':(6==m)?'Jun':
    ( 7==m)?'Jul':( 8==m)?'Aug':(9==m)?'Sep':
    (10==m)?'Oct':(11==m)?'Nov':'Dec';

  return "" + mmm + " " +
    (d<10?"0"+d:d) + ", " + "20" +
    (y<10?"0"+y:y);
}

function date_lastmodified()
{
  var lmd = document.lastModified;
  var s   = "Unknown";
  var d1;

  // check if we have a valid date
  // before proceeding
  if(0 != (d1=Date.parse(lmd)))
  {
    s = "" + date_mmmddyy(new Date(d1));
  }

  return s;
}

function gethomeimage()
{
var home_image = new Array ();
home_image[0] = "images/home_1.jpg";
home_image[1] = "images/home_2.jpg";
home_image[2] = "images/home_3.jpg";

var i = Math.round(2*Math.random());

document.getElementById("homeimg").src = home_image[i];

}

function showgallery(theme)
{
	var sStr = ",scrollbars=yes,resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no";
	if (window.screen)
	{
		var aw = screen.availWidth;
		var ah = screen.availHeight - 50;
		var height = 600;
		var width = 650;
		sStr = "width=" + width + ",height=" + height + sStr;
		sStr += ",left=" + ( (aw - width) / 2 );
//alert( sStr );
		var nTop = (ah - height) / 2;
		if ( nTop < 0 )
			nTop = 0;
		sStr += ",top=" + nTop;
	}
	window_handle = window.open("wsa_gallery.php?p="+theme,"pressdtl",sStr);
	window_handle.focus();
}
