<!--
/***********************************************
* Ultimate Fade-In Slideshow (v1.5): © Dynamic Drive (http://www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
//Array syntax = [IMAGE PATH, LINK, TARGET]
fadeimages[0]=["images/index1.gif", "", ""];
fadeimages[1]=["images/index2.gif", "", ""];
fadeimages[2]=["images/index3.gif", "", ""];
fadeimages[3]=["images/index4.gif", "", ""];

var fadebgcolor="#ffffff"

////NO need to edit beyond here/////////////

var fadearray=new Array() //array to cache fadeshow instances
var fadeclear=new Array() //array to cache corresponding clearinterval pointers

var dom=(document.getElementById) //modern dom browsers
var iebrowser=document.all

function fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck=pause
this.mouseovercheck=0
this.delay=delay
this.degree=10 //initial opacity degree (10%)
this.curimageindex=0
this.nextimageindex=1
fadearray[fadearray.length]=this
this.slideshowid=fadearray.length-1
this.canvasbase="canvas"+this.slideshowid
this.curcanvas=this.canvasbase+"_0"
if (typeof displayorder!="undefined")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages=theimages
this.imageborder=parseInt(borderwidth)
this.postimages=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages[p]=new Image()
this.postimages[p].src=theimages[p][0]
}

var fadewidth=fadewidth+this.imageborder*2
var fadeheight=fadeheight+this.imageborder*2

if (iebrowser&&dom||dom) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master'+this.slideshowid+'" style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"><div id="'+this.canvasbase+'_0" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);-moz-opacity:10;-khtml-opacity:10;background-color:'+fadebgcolor+'"></div><div id="'+this.canvasbase+'_1" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);-moz-opacity:10;background-color:'+fadebgcolor+'"></div></div>')
else
document.write('<div><img name="defaultslide'+this.slideshowid+'" src="'+this.postimages[0].src+'"></div>')

if (iebrowser&&dom||dom) //if IE5+ or modern browsers such as Firefox
this.startit()
else{
this.curimageindex++
setInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay)
}
}

function fadepic(obj){
if (obj.degree<100){
obj.degree+=10
if (obj.tempobj.filters&&obj.tempobj.filters[0]){
if (typeof obj.tempobj.filters[0].opacity=="number") //if IE6+
obj.tempobj.filters[0].opacity=obj.degree
else //else if IE5.5-
obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
}
else if (obj.tempobj.style.MozOpacity)
obj.tempobj.style.MozOpacity=obj.degree/101
else if (obj.tempobj.style.KhtmlOpacity)
obj.tempobj.style.KhtmlOpacity=obj.degree/100
}
else{
clearInterval(fadeclear[obj.slideshowid])
obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1"
obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas)
obj.populateslide(obj.tempobj, obj.nextimageindex)
obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0
setTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay)
}
}

fadeshow.prototype.populateslide=function(picobj, picindex){
var slideHTML=""
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML='<a href="'+this.theimages[picindex][1]+'" target="'+this.theimages[picindex][2]+'">'
slideHTML+='<img src="'+this.postimages[picindex].src+'" border="'+this.imageborder+'px">'
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML+='</a>'
picobj.innerHTML=slideHTML
}


fadeshow.prototype.rotateimage=function(){
if (this.pausecheck==1) //if pause onMouseover enabled, cache object
var cacheobj=this
if (this.mouseovercheck==1)
setTimeout(function(){cacheobj.rotateimage()}, 100)
else if (iebrowser&&dom||dom){
this.resetit()
var crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
crossobj.style.zIndex++
fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)
this.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0"
}
else{
var ns4imgobj=document.images['defaultslide'+this.slideshowid]
ns4imgobj.src=this.postimages[this.curimageindex].src
}
this.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0
}

fadeshow.prototype.resetit=function(){
this.degree=10
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
if (crossobj.filters&&crossobj.filters[0]){
if (typeof crossobj.filters[0].opacity=="number") //if IE6+
crossobj.filters(0).opacity=this.degree
else //else if IE5.5-
crossobj.style.filter="alpha(opacity="+this.degree+")"
}
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=this.degree/101
else if (crossobj.style.KhtmlOpacity)
crossobj.style.KhtmlOpacity=obj.degree/100
}


fadeshow.prototype.startit=function(){
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
this.populateslide(crossobj, this.curimageindex)
if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj=this
var crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid)
crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
}
this.rotateimage()
}



/* *************************************************************
* set some global variables that will be checked later         *
***************************************************************/
var emailAddress = /^.{1,}@{1}\S{1,}\.\w+/;

var navHomeImg = new Image();
var navAboutImg = new Image();
var navMembershipImg = new Image();
var navCalendarImg = new Image();
var navVolunteerImg = new Image();
var navBoardImg = new Image();
var navMinutesImg = new Image();
var navCommitteesImg = new Image();
var weNeedYouImg = new Image();
var navNewsImg = new Image();
var navTreasurerImg = new Image();
var navCatImg = new Image();
var weDenimImg = new Image();
var searchImg = new Image();



function weNeedYou()
{
	var weNeedYouMOver	= "weNeedYouImg.src = \'images/weNeedYouSelected.gif\'"; 
	var weNeedYouMOut	= "weNeedYouImg.src = \'images/weNeedYou.gif\'";
	var weNeedYouImg	= "images/weNeedYou.gif";
	
	document.write('<a href=\'volunteer.html\' target =\'_parent\' onMouseOver="');
		document.write(weNeedYouMOver);
		document.write('" onMouseOut="');
		document.write(weNeedYouMOut);
		document.write('"><img src=\'');
		document.write(weNeedYouImg);
		document.write('\' border=\'0\' name=\'weNeedYouImg\' height=\'61\' width=\'181\' /></a>');
}



function denim()
{
	var denimMOver	= "denimImg.src = \'images/denimSelected.gif\'"; 
	var denimMOut	= "denimImg.src = \'images/denim.gif\'";
	var denimImg	= "images/denim.gif";
	
	
	
	
	
	document.write('<a href=\'auction.html\' target =\'_parent\' onMouseOver="');
		document.write(denimMOver);
		document.write('" onMouseOut="');
		document.write(denimMOut);
		document.write('"><img src=\'');
		document.write(denimImg);
		document.write('\' border=\'0\' name=\'denimImg\' height=\'150\' width=\'200\' align=\'right\' /></a>');
}

function denimBig()
{
	var denimMOver	= "denimImg2.src = \'images/denim2Selected.gif\'"; 
	var denimMOut	= "denimImg2.src = \'images/denim2.gif\'";
	var denimImg	= "images/denim2.gif";
	
	
	
	
	
	document.write('<a href=\'auction.html\' target =\'_parent\' onMouseOver="');
		document.write(denimMOver);
		document.write('" onMouseOut="');
		document.write(denimMOut);
		document.write('"><img src=\'');
		document.write(denimImg);
		document.write('\' border=\'0\' name=\'denimImg2\' height=\'350\' width=\'280\' align=\'right\' /></a>');
}


function navigation()
{

	var homeMOver	= "navHomeImg.src = \'images/navHomeSelected.gif\'"; 
	var homeMOut		= "navHomeImg.src = \'images/navHome.gif\'";
	var homeImg		= "images/navHome.gif";

	var aboutMOver	= "navAboutImg.src = \'images/navAboutSelected.gif\'"; 
	var aboutMOut	= "navAboutImg.src = \'images/navAbout.gif\'";
	var aboutImg	= "images/navAbout.gif";

	var membershipMOver	= "navMembershipImg.src = \'images/navMembershipSelected.gif\'"; 
	var membershipMOut	= "navMembershipImg.src = \'images/navMembership.gif\'";
	var membershipImg	= "images/navMembership.gif";

	var calendarMOver	= "navCalendarImg.src = \'images/navCalendarSelected.gif\'"; 
	var calendarMOut	= "navCalendarImg.src = \'images/navCalendar.gif\'";
	var calendarImg		= "images/navCalendar.gif";

	var volunteerMOver	= "navVolunteerImg.src = \'images/navVolunteerSelected.gif\'"; 
	var volunteerMOut	= "navVolunteerImg.src = \'images/navVolunteer.gif\'";
	var volunteerImg	= "images/navVolunteer.gif";
	
	var boardMOver	= "navBoardImg.src = \'images/navBoardSelected.gif\'"; 
	var boardMOut	= "navBoardImg.src = \'images/navBoard.gif\'";
	var boardImg	= "images/navBoard.gif";
	
	var minutesMOver	= "navMinutesImg.src = \'images/navMinutesSelected.gif\'"; 
	var minutesMOut		= "navMinutesImg.src = \'images/navMinutes.gif\'";
	var minutesImg		= "images/navMinutes.gif";
	
	var committeesMOver	= "navCommitteesImg.src = \'images/navCommitteesSelected.gif\'"; 
	var committeesMOut	= "navCommitteesImg.src = \'images/navCommittees.gif\'";
	var committeesImg	= "images/navCommittees.gif";	
	
	var newsMOver	= "navNewsImg.src = \'images/navNewsSelected.gif\'"; 
	var newsMOut	= "navNewsImg.src = \'images/navNews.gif\'";
	var newsImg	= "images/navNews.gif";
	
	var treasurerMOver	= "navTreasurerImg.src = \'images/navTreasurerSelected.gif\'"; 
	var treasurerMOut		= "navTreasurerImg.src = \'images/navTreasurer.gif\'";
	var treasurerImg		= "images/navTreasurer.gif";

	var catMOver	= "navCatImg.src = \'images/navCatSelected.gif\'"; 
	var catMOut		= "navCatImg.src = \'images/navCat.gif\'";
	var catImg		= "images/navCat.gif";

	if (document.location.href.indexOf("index.php") != -1 || document.location.href.indexOf("index1.html") != -1)
	{
		homeMOver	= "";
		homeMOut	= "";
		homeImg		= "images/navHomeActive.gif";
	}else if 
	(document.location.href.indexOf("about.html") != -1 || document.location.href.indexOf("navigation.html") != -1)
	{
		aboutMOver	= "";
		aboutMOut	= "";
		aboutImg	= "images/navAboutActive.gif";
	}else if 
	(document.location.href.indexOf("membership.html") != -1 || document.location.href.indexOf("sendmail.php") != -1)
	{
		membershipMOver	= "";
		membershipMOut	= "";
		membershipImg	= "images/navMembershipActive.gif";
	}else if
	(document.location.href.indexOf("volunteer.html") != -1 || document.location.href.indexOf("volunteer1.html") != -1)
	{
		volunteerMOver	= "";
		volunteerMOut	= "";
		volunteerImg	= "images/navVolunteerActive.gif";
	}else if
	(document.location.href.indexOf("calendar.php") != -1 || document.location.href.indexOf("eventDetail.php") != -1)
	{
		calendarMOver	= "";
		calendarMOut	= "";
		calendarImg	= "images/navCalendarActive.gif";
	}else if	
	(document.location.href.indexOf("news.html") != -1 || document.location.href.indexOf("news1.html") != -1)
	{
		newsMOver	= "";
		newsMOut	= "";
		newsImg	= "images/navNewsActive.gif";
	}else if
	(document.location.href.indexOf("treasurer.html") != -1 || document.location.href.indexOf("treasurer1.html") != -1)
	{
		treasurerMOver	= "";
		treasurerMOut	= "";
		treasurerImg	= "images/navTreasurerActive.gif";
	}else if
	(document.location.href.indexOf("catNips.html") != -1 || document.location.href.indexOf("catNips1.html") != -1)
	{
		catMOver	= "";
		catMOut	= "";
		catImg	= "images/navCatActive.gif";
	}else if
	(document.location.href.indexOf("board.html") != -1 || document.location.href.indexOf("board1.html") != -1)
	{
		boardMOver	= "";
		boardMOut	= "";
		boardImg	= "images/navBoardActive.gif";
		
		aboutMOver	= "";
		aboutMOut	= "";
		aboutImg	= "images/navAboutSubActive.gif";
	}else if
	(document.location.href.indexOf("committees.html") != -1 || document.location.href.indexOf("committees1.html") != -1
	|| document.location.href.indexOf("businessPartnerships.html") != -1
	|| document.location.href.indexOf("communications.html") != -1
	|| document.location.href.indexOf("community.html") != -1
	|| document.location.href.indexOf("familyEvents.html") != -1
	|| document.location.href.indexOf("fundraising.html") != -1
	|| document.location.href.indexOf("academicEnrichment.html") != -1
	|| document.location.href.indexOf("studentServices.html") != -1)
	{
		
		committeesMOver	= "";
		committeesMOut	= "";
		committeesImg	= "images/navCommitteesActive.gif";		
		
		boardImg	= "images/navBoardBypass.gif";
		boardMOver	= "navBoardImg.src = \'images/navBoardBypassSel.gif\'"; 
		boardMOut	= "navBoardImg.src = \'images/navBoardBypass.gif\'";
		
		aboutMOver	= "";
		aboutMOut	= "";
		aboutImg	= "images/navAboutSubActive.gif";
	}else if
	(document.location.href.indexOf("minutes.html") != -1 || document.location.href.indexOf("minutes1.html") != -1)
	{
		minutesMOver	= "";
		minutesMOut	= "";
		minutesImg	= "images/navMinutesActive.gif";
		
		boardImg	= "images/navBoardBypass.gif";
		boardMOver	= "navBoardImg.src = \'images/navBoardBypassSel.gif\'"; 
		boardMOut	= "navBoardImg.src = \'images/navBoardBypass.gif\'";	
		
		
		committeesImg	= "images/navCommitteesBypass.gif";
		committeesMOver	= "navCommitteesImg.src = \'images/navCommitteesBypassSel.gif\'"; 
		committeesMOut	= "navCommitteesImg.src = \'images/navCommitteesBypass.gif\'";	
		
		
		aboutMOver	= "";
		aboutMOut	= "";
		aboutImg	= "images/navAboutSubActive.gif";
	
	}else
	{
		homeMOver	= "";
		homeMOut	= "";
		homeImg		= "images/navHomeActive.gif";
	}


	document.write('<table border=\'0\' cellpadding=\'0\' cellspacing=\'0\' valign=\'top\' height=\'100%\'>');
	document.write('<tr><td valign=\'top\'><a href=\'index.php\' target =\'_parent\' onMouseOver="');
	document.write(homeMOver);
	document.write('" onMouseOut="');
	document.write(homeMOut);
	document.write('"><img name=\'navHomeImg\' src=\'');
	document.write(homeImg);
	document.write('\' border=\'0\' height=\'38\' width=\'120\' /></a></td></tr>');
	document.write('<tr><td valign=\'top\'><a href=\'about.html\' target =\'_parent\' onMouseOver="');
	document.write(aboutMOver);
	document.write('" onMouseOut="');
	document.write(aboutMOut);
	document.write('"><img src=\'');
	document.write(aboutImg);
	document.write('\' border=\'0\' name=\'navAboutImg\' height=\'40\' width=\'120\' /></a></td></tr>');
	
	if (document.location.href.indexOf("about.html") != -1 || document.location.href.indexOf("board.html") != -1
	|| document.location.href.indexOf("minutes.html") != -1
	|| document.location.href.indexOf("committees.html") != -1
	|| document.location.href.indexOf("businessPartnerships.html") != -1
	|| document.location.href.indexOf("communications.html") != -1
	|| document.location.href.indexOf("community.html") != -1
	|| document.location.href.indexOf("familyEvents.html") != -1
	|| document.location.href.indexOf("fundraising.html") != -1
	|| document.location.href.indexOf("academicEnrichment.html") != -1
	|| document.location.href.indexOf("studentServices.html") != -1)
	{
		document.write('<tr><td valign=\'top\'><a href=\'board.html\' target =\'_parent\' onMouseOver="');
		document.write(boardMOver);
		document.write('" onMouseOut="');
		document.write(boardMOut);
		document.write('"><img src=\'');
		document.write(boardImg);
		document.write('\' border=\'0\' name=\'navBoardImg\' height=\'18\' width=\'120\' /></a></td></tr>');
				
		document.write('<tr><td valign=\'top\'><a href=\'committees.html\' target =\'_parent\' onMouseOver="');
		document.write(committeesMOver);
		document.write('" onMouseOut="');
		document.write(committeesMOut);
		document.write('"><img src=\'');
		document.write(committeesImg);
		document.write('\' border=\'0\' name=\'navCommitteesImg\' height=\'18\' width=\'120\' /></a></td></tr>');
		
		document.write('<tr><td valign=\'top\'><a href=\'minutes.html\' target =\'_parent\' onMouseOver="');
		document.write(minutesMOver);
		document.write('" onMouseOut="');
		document.write(minutesMOut);
		document.write('"><img src=\'');
		document.write(minutesImg);
		document.write('\' border=\'0\' name=\'navMinutesImg\' height=\'23\' width=\'120\' /></a></td></tr>');
	}
	
	
	
	document.write('<tr><td valign=\'top\'><a href=\'membership.html\' target =\'_parent\' onMouseOver="');
	document.write(membershipMOver);
	document.write('" onMouseOut="');
	document.write(membershipMOut);
	document.write('"><img src=\'');
	document.write(membershipImg);
	document.write('\' border=\'0\' name=\'navMembershipImg\' height=\'40\' width=\'120\' /></a></td></tr>');
	document.write('<tr><td valign=\'top\'><a href=\'calendar.php\' target =\'_parent\' onMouseOver="');
	document.write(calendarMOver);
	document.write('" onMouseOut="');
	document.write(calendarMOut);
	document.write('"><img src=\'');
	document.write(calendarImg);
	document.write('\' border=\'0\' name=\'navCalendarImg\' height=\'40\' width=\'120\' /></a></td></tr>');
	document.write('<tr><td valign=\'top\'><a href=\'volunteer.html\' target =\'_parent\' onMouseOver="');
	document.write(volunteerMOver);
	document.write('" onMouseOut="');
	document.write(volunteerMOut);
	document.write('"><img src=\'');
	document.write(volunteerImg);
	document.write('\' border=\'0\' name=\'navVolunteerImg\' height=\'40\' width=\'120\' /></a></td></tr>');	
	document.write('<tr><td valign=\'top\'><a href=\'news.html\' target =\'_parent\' onMouseOver="');
	document.write(newsMOver);
	document.write('" onMouseOut="');
	document.write(newsMOut);
	document.write('"><img src=\'');
	document.write(newsImg);
	document.write('\' border=\'0\' name=\'navNewsImg\' height=\'40\' width=\'120\' /></a></td></tr>');	
	document.write('<tr><td valign=\'top\'><a href=\'treasurer.html\' target =\'_parent\' onMouseOver="');
	document.write(treasurerMOver);
	document.write('" onMouseOut="');
	document.write(treasurerMOut);
	document.write('"><img src=\'');
	document.write(treasurerImg);
	document.write('\' border=\'0\' name=\'navTreasurerImg\' height=\'40\' width=\'120\' /></a></td></tr>');
	
	document.write('<tr><td valign=\'top\'><a href=\'catNips.html\' target =\'_parent\' onMouseOver="');
	document.write(catMOver);
	document.write('" onMouseOut="');
	document.write(catMOut);
	document.write('"><img src=\'');
	document.write(catImg);
	document.write('\' border=\'0\' name=\'navCatImg\' height=\'40\' width=\'120\' /></a></td></tr>');	

	
	document.write('<tr><td background=\'images/underNav.gif\' height=\'100%\'><div class=\'radioStyle\'><a href=\'http://www2.fultonschools.org/school/newprospect/\' target=\'_new\'>New<br />Prospect<br />Elementary</a> <img src=\'images/icon.offsite.gif\' border=\'0\' /></div></td></tr>');
	document.write('</table>');
		
}

function headerOLD()
{
				document.write('<table cellpadding=\'0\' cellspacing=\'0\' border=\'0\' bordercolor=\'red\' height=\'72\' width=\'731\'>');
					document.write('<tr>');
						document.write('<td width=\'72\' height=\'72\'><a href=\'index.php\'><img src=\'images/newProspectLogo.gif\' border=\'0\' /></a></td>');
						document.write('<td width=\'291\' height=\'72\'><img src=\'images/newProspectPTA.gif\' /></td>');
						document.write('<td width=\'367\' height=\'72\'><img src=\'images/headerPics.gif\' /></td>');
					document.write('</tr>');
				document.write('</table>');		
}

function header()
{
				document.write('<table cellpadding=\'0\' cellspacing=\'0\' border=\'0\' bordercolor=\'red\' height=\'72\' width=\'848\' style=\'border-right:1px solid #666666; border-left:1px solid #666666; \'>');
					document.write('<tr>');
						document.write('<td width=\'850\' height=\'72\'><a href=\'index.php\'><img src=\'images/headerPic.gif\' border=\'0\' /></a></td>');
						
					document.write('</tr>');
				document.write('</table>');		
}


function validate(frm)
	{
	results = isItBlank(frm);
	if (!results) return false;
			if (!emailAddress.test(document.submitForm.fromemail.value))
			{
				alert("Please enter a valid email address");
				document.submitForm.fromemail.focus();
				document.submitForm.fromemail.select();
				return false;
			}				
	return true;
	}

function isItBlank(frm)
	{
	for(i=0; i<frm.elements.length; i++)// loop through form elements
		{
			if (frm.elements[i].value == '' || frm.elements[i].value == null || frm.elements[i].value == undefined)
			{
				if (frm.elements[i].name == 'fromemail')
				{				
					alert ('Please provide an email address.');
					frm.elements[i].focus();
					return false;
				}
				else if (frm.elements[i].name == 'homePhone')
				{
					alert ('Please provide a home phone number including area code.');
					frm.elements[i].focus();
					return false;
				}
				else if (frm.elements[i].name == 'wholeName')
				{
					alert ('Please provide your name.');
					frm.elements[i].focus();
					return false;
				}
				else if (frm.elements[i].name == 'address')
				{
					alert ('Please provide an address.');
					frm.elements[i].focus();
					return false;
				}
				else if (frm.elements[i].name == 'cityStateZip')
				{
					alert ('Please provide a City, State and zip code.');
					frm.elements[i].focus();
					return false;
				}
				else if (frm.elements[i].name == 'area')
				{
					alert ('Please provide the area of town in which you are interested.');
					frm.elements[i].focus();
					return false;
				}
				else if (frm.elements[i].name == 'moveDate')
				{
					alert ('Please provide a move date.');
					frm.elements[i].focus();
					return false;
				}
				else if (frm.elements[i].name == 'priceRange')
				{
					alert ('Please provide a price range.');
					frm.elements[i].focus();
					return false;
				}				
			}
		}
	return true;
	}

function footer()
{
	var today=new Date();
	var nyear=today.getYear();
	
	if (nyear<=99)
  	nyear= "19"+nyear;

	if ((nyear>99) && (nyear<2000))
 	nyear+=1900;
		document.write('<div class="footerStyle"><a href="');
			document.write('index.php" class="plain" target =\'_parent\'>Home</a> | <a href="'); 
			document.write('about.html" class="plain" target =\'_parent\'>About the PTA</a> | <a href="');
			document.write('membership.html" class="plain" target =\'_parent\'>Membership</a> | <a href="');
			document.write('calendar.php" class="plain" target =\'_parent\'>Calendar</a> | ');			
			document.write('<a href="volunteer.html" class="plain" target =\'_parent\'>Volunteer Opportunities</a></div>');
		document.write('<span class="footerStyle">');
		document.write('copyright &copy; ');
		document.write(nyear);
		document.write(' Atlanta Relocation Real Estate');
		document.write('</span');
}

//-->