filename = new Array("index.html","clinics.html","services.html","political.html","support.html","about.html");





function WriteTop(thissection) {

	var alttext = new Array("Home","Clinic Information","Medical Services","Political Issues","Support Planned Parenthood","About Us/Jobs");

	var tabwidth = new Array(0,82,96,108,86,108);



	document.writeln('<TABLE width="750" border="0" cellspacing="0" cellpadding="0">');

	document.writeln('	<TR>');

	document.writeln('		<TD width="480" colspan="2"><IMG SRC="images/spacer.gif" width="480" height="30" BORDER="0" ALIGN="top" ALT=""></TD>');

	document.writeln('		<TD width="270" colspan="2" rowspan="4"><IMG SRC="images/women.gif" width="270" height="134" BORDER="0" ALIGN="top" ALT="Photo of women"></TD>');

	document.writeln('	</TR>');

	document.writeln('	<TR>');

	document.write('		<TD width="480" colspan="2">');

	if (thissection == 0) {

		document.write('<A HREF="index.html"><IMG SRC="images/PPTCR_logo_300.gif" width="282" height="42" BORDER="0" ALIGN="top" ALT="Planned Parenthood of the Texas Capital Region, Inc."></a>');

	} else {

		document.write('<A HREF="index.html"><IMG SRC="images/PPTCR_logo_300.gif" width="282" height="42" BORDER="0" ALIGN="top" ALT="Planned Parenthood Texas Capital Region home page"></A>');

	}

	document.writeln('</TD>');

	document.writeln('	</TR>');

	document.writeln('	<TR>');

	document.writeln('		<TD width="480" colspan="2"><IMG SRC="images/spacer.gif" width="480" height="37" BORDER="0" ALIGN="top" ALT=""></TD>');

	document.writeln('	</TR>');

	document.writeln('	<TR>');

	document.write('		<TD width="480" colspan="2"><NOBR>');



	for (var i=1; i<6; i++) {

		if (i == thissection) {

			document.write('<IMG SRC="images/tab' + i + '_pick.gif" ');

		} else {

			document.write('<A HREF="' + filename[i] + '"><IMG SRC="images/tab' + i + '_summer.gif" ');

		}

		document.write('width="' + tabwidth[i] + '" height="25" BORDER="0" ALIGN="top" ALT="' + alttext[i] + '">');

		if (i != thissection) {

			document.write('</A>');

		}

	}

	document.writeln('</NOBR></TD>');

	document.writeln('	</TR>');

	document.writeln('	<TR>');

	document.writeln('		<TD width=1 bgcolor="black" rowspan="2"><IMG SRC="images/spacer.gif" width="1" height="5" BORDER="0" ALIGN="top" ALT=""></TD>');

	document.writeln('		<TD width="479" class="FrameNoPad"><IMG SRC="images/title' + thissection + '_summer.gif" width="479" height="60" BORDER="0" ALIGN="top" ALT="Section title: ' + alttext[thissection].toUpperCase() + '"></TD>');

	document.writeln('		<TD width="269" class="FrameNoPad"><IMG SRC="images/elbow.gif" width="269" height="60" BORDER="0" ALIGN="top" ALT=""></TD>');

	document.writeln('		<TD width=1 bgcolor="black" rowspan="2"><IMG SRC="images/spacer.gif" width="1" height="5" BORDER="0" ALIGN="top" ALT=""></TD>');

	document.writeln('	</TR>');

}









function WriteFooter(thissection) {

	var menuname = new Array("Home","Clinic&nbsp;Information","Medical&nbsp;Services","Political&nbsp;Issues","Support&nbsp;Planned&nbsp;Parenthood","About&nbsp;Us/Jobs");

	document.writeln('<BR><BR>');

	document.write('<FONT class="Footer">');

	for (var i=0; i<6; i++) {

		if (i != 0) {

			document.write(' | ');

		}

		if (i == thissection) {

			document.write(menuname[i]);

		} else {

			document.write('<A HREF="' + filename[i] + '">');

			document.write('<B>' + menuname[i] + '</B>');

			document.write('</A>');

		}

	}

	document.writeln('<BR><BR>');

	document.writeln('Copyright &copy;2003, Planned Parenthood Texas Capital Region, Inc.</FONT>');

}

