<!----------- Hide from old broswers            

           
function foldertab(headertext,bkgndcolor,width,alignment,fontcolor,trailertext)
{
	// Sample: <script language="javascript">foldertab("this is a test","red","100%","left","yellow");</script>

if (headertext == null){ headertext = "x";}
if (bkgndcolor == null){bkgndcolor = "000000";}
if (width == null){width = "80%";}
if (alignment == null){alignment = "left";}
if (fontcolor == null){fontcolor = "white";}
if (trailertext == null){trailertext = " ";}

document.write(
'<Table Cellpadding="0" Cellspacing="0" Border="0" width=' + width + '>',
'<TR  bgcolor=' + bkgndcolor + '>',
'<TD align=alignment width=70%>',
'<font color=' + fontcolor + ' face="Arial,Helvetica"><b><nobr> &#160;' + headertext + '</nobr></b></font></TD>',
'<TD valign=right bgcolor=DDDDDD width=30%><font face="Arial,Helvetica"><b><nobr> &#160;' + trailertext + '</nobr></b></font></TD></TR>',
'<TR  bgcolor=' + bkgndcolor + '><TD height=2 colspan=3><img src="/image/blank.gif" border=0 width=1 height=2></TD></TR>',
'</Table>'
);

}


//===================================================================


function DrawGraphics()
{


//=========== D E T E R M I N E   P L A T F O R  M   ===============
var platformvar = navigator.userAgent;

           // Parse PC version of UserAgent
           var platform = "";
           var part1 = "";
           var part2 = "";
           var part3 = "";

           parts = platformvar.split('(');
                         part1 = parts[0];
                         part2 = parts[1];
                                                                    
                         parts = part2.split(';');
                         part1 = parts[0];
                         part2 = parts[1];
                         part3 = parts[2];

			if (part3 != null)
				{
					parts = part3.split(' ');
						part1 = parts[0];
						part2 = parts[1];         

					parts = part2.split('_');
						platforma = parts[0];
						part2 = parts[1];
                                                 }
                                                 else
                                                 {
                                                 	platforma = "PC";
                                                 }
           // Parse Mac version of UserAgent
           elements = platformvar.split('(');
           element1 = elements[0];
           element2 = elements[1];

           elements = element2.split(';');
           platform = elements[0];
           element2 = elements[1];
           //Normalize Platform
           if (platform == "Macintosh" || platforma == "Mac") {platform = "Macintosh";}else{platform = "PC";}
		
		
		
     var  brName = navigator.appName;
	if (brName == "Netscape" && brName != "" && brName != null)
	{
		if (platform == "Macintosh")
		{
		 	document.write(
	 		'<img src="/image/sectionnavcap.gif" border=0 align=left vspace=0 hspace=0 width=169 height=50>'
	 		);
		}
		else
		{
		 	document.write(
	 		'<img src="/image/sectionnavcap.gif" border=0 align=left vspace=0 hspace=0 width=166 height=50>'
	 		);
		}
	}
	else
	{
			if (platform == "Macintosh")
		{
				 document.write(
	 			'<img src="/image/sectionnavcap.gif" border=0 align=left vspace=0 hspace=0 width=175 height=50>'
	 			);
		}
		else
		{
		 	document.write(
	 		'<img src="/image/sectionnavcap.gif" border=0 align=left vspace=0 hspace=0 width=175 height=50>'
	 		);
		}
	}

}


//===================================================

function footer()
{
	document.write(
		'<HR>',
		'<blockquote><blockquote>',
		'',
		'<font style="font-size:14px; font-family:Arial; font-weight:700;">',
		' SYSTEM PLANNING CORPORATION<br>',
		' 1000 Wilson Boulevard <br>',
		' Arlington, Virginia 22209 <br>',
		' 703 351-8200 - Main Number <br>',
		' 703 351-8783 - Contract Management <br>',
		' 703 351-8708 - Fax <br>',
		' Internet: <a href="http://www.sysplan.com">www.sysplan.com</a> ',
		'</font>',
		'</blockquote></blockquote>	',
		'</td></tr></table>',
		''	
	);

}



//===================================================

function header(URL)
{
	document.write(
		'<table width=700><tr><td>',
		'<a href="'+ URL + '">Back to Main Menu</a><br>',
		
		''	
	);

}






//  end of java script ------->
