// The following is
// Copyright 2000-2001 Ford Truck Enthusiasts, Inc., All Rights Reserved
function SelectWindow( nParamYear )
{
	
	document.write( "Create your own <a href=\"/user_gallery/index.php\">Photo Gallery</a> or view galleries our users have created!<br><br><b>" );

	if ( nParamYear < 1968 )
	{
		document.write( nParamYear + " Ford Trucks" );
	}
	else if ( nParamYear < 1980 )
	{
		document.write( nParamYear + " Ford Trucks, SUVs, Vans and Rancheros" );
	}
	else
	{
		document.write( nParamYear + " Ford Trucks, SUVs and Vans." );
	}
		
	document.write( "</b><br><table cellspacing=0 border=1 cellpadding=3>" );

	nYear = 2001;
	// Draw main table
	for ( nRow = 0; nYear > 1924; nRow++ )
	{
		document.write( "<tr>" );
		for ( nCol = 0; nCol < 10 && nYear > 1924; nCol++, nYear-- )
		{
			if ( nYear == nParamYear )
			{
				document.write( "<td align=center bgcolor=#7f7f7f><font size=2>" + nYear + "</font></td>" );
			}
			else
			{
				document.write( "<td align=center bgcolor=#bfbfbf><font size=2><a href='" + nYear + ".html'>" + nYear + "</a></font></td>" );
			}
		}
		document.write( "</tr>" );
	}
	document.write( "</table>" );
	
	// Promote store item
	if ( nParamYear > 1932 && nParamYear < 1980 )
	{
		document.write( "<b><a href='http://motorhaven.autoanything.com/'>Click Here to Purchase a " + nParamYear + " Shop Manual</a></b>" );
	}		
	else if ( nParamYear > 1986 )
	{
		document.write( "<b><a href='http://motorhaven.autoanything.com/'>Click Here to Purchase a Performance Computer Chip for your Ford.</a></b>" );
	}		
}
