document.write('<style type="text/css">');
document.write('    .bodyMain  a:active  { color: #000000; text-decoration:none; font-size:10pt; font-family:Verdana;}'); 
document.write('	.bodyMain  a:link    { color: #0000FF; text-decoration:none; font-family:Verdana; font-size:10pt;}'); 
document.write('	.bodyMain  a:visited { color: #0000FF; text-decoration:none; font-family:Verdana; font-size:10pt;}');
document.write('	.bodyMain  a:hover   { color: #FF0000; text-decoration:none; font-family:Verdana; font-size:10pt;}');
document.write('	.bodyMain{');
document.write('	     font-color: #000000;');
document.write('	     font-size:10pt;');
document.write(' 	     text-decoration: none;');
document.write(' 	     font-family:Verdana;');

document.write('</style>');


function winMedia(z)
 {

  if (z == "x"){

      document.write('<object classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6" id="WindowsMediaPlayer1" width="330" height="307">');
      document.write('<param name="URL" ref value="http://www.cbhsbooster.us/videos/2008Intro1.wmv">');
      document.write('<PARAM name="AnimationAtStart" VALUE="1">');
      //document.write('<PARAM name="ClickToPlay" VALUE="1">
      //document.write('<PARAM name="ShowControls" VALUE="0">
	  //document.write('<param name="ShowStatusBar" value="0">
	  //document.write('<PARAM name="ShowDisplay" VALUE="0">
      document.write('<param name="rate" value="1">');
      document.write('<param name="balance" value="0">');
      document.write('<param name="currentPosition" value="0">');
      document.write('<param name="defaultFrame" value>');
      document.write('<param name="playCount" value="1">');
      document.write('<param name="autoStart" value="1">');
      document.write('<param name="currentMarker" value="0">');
      document.write('<param name="invokeURLs" value="-1">');
      document.write('<param name="baseURL" value>');
      document.write('<param name="volume" value="50">');
      document.write('<param name="mute" value="0">');
      document.write('<param name="uiMode" value="full">');
      document.write('<param name="stretchToFit" value="0">');
      document.write('<param name="windowlessVideo" value="0">');
      document.write('<param name="enabled" value="-1">');
      document.write('<param name="enableContextMenu" value="-1">');
      document.write('<param name="fullScreen" value="0">');
      document.write('<param name="SAMIStyle" value>');
      document.write('<param name="SAMILang" value>');
      document.write('<param name="SAMIFilename" value>');
      document.write('<param name="captioningID" value>');
      document.write('<param name="enableErrorDialogs" value="0">');
      document.write('</object><br><font face="arial" size="1"><b>To view the video you need <a target= "_blank" href=');
      document.write('"http://www.microsoft.com/windows/windowsmedia/player/11/default.aspx">Windows Media Player - click here</b></font></a>');
    
       }
     else
     {    
      document.write('<object type="application/x-ms-wmp" id="WindowsMediaPlayer1" width="330" height="307">');
      document.write('<param name="URL" ref value="http://www.cbhsbooster.us/videos/2008Intro1.wmv">');
      document.write('<PARAM name="AnimationAtStart" VALUE="1">');
      document.write('<param name="rate" value="1">');
      document.write('<param name="balance" value="0">');
      document.write('<param name="currentPosition" value="0">');
      document.write('<param name="defaultFrame" value>');
      document.write('<param name="playCount" value="1">');
      document.write('<param name="autoStart" value="1">');
      document.write('<param name="currentMarker" value="0">');
      document.write('<param name="invokeURLs" value="-1">');
      document.write('<param name="baseURL" value>');
      document.write('<param name="volume" value="50">');
      document.write('<param name="mute" value="0">');
      document.write('<param name="uiMode" value="full">');
      document.write('<param name="stretchToFit" value="0">');
      document.write('<param name="windowlessVideo" value="0">');
      document.write('<param name="enabled" value="-1">');
      document.write('<param name="enableContextMenu" value="-1">');
      document.write('<param name="fullScreen" value="0">');
      document.write('<param name="SAMIStyle" value>');
      document.write('<param name="SAMILang" value>');
      document.write('<param name="SAMIFilename" value>');
      document.write('<param name="captioningID" value>');
      document.write('<param name="enableErrorDialogs" value="0">');
      document.write('<a></a></object><br><a target= "_blank" href="http://port25.technet.com/pages/windows-media-player-firefox-plugin-download.aspx">');
      document.write('<font face="arial" size="1"><b>If you do NOT see the video, click here for the plugin for Firefox</b></font></a>');
      }
    }


function ltrim (s)
{
	return s.replace( /^\s*/, "" );
}
  function rtrim (s)
{
	return s.replace( /\s*$/, "" );
}
  function trim (s)
{
	return rtrim(ltrim(s));
}

var whitespace = "\t\n\r";
 // Check whether string s is empty.
function isEmpty(s)
{
return ((s == null) || (s.length == 0)) }
  // Returns true if string s is empty or 
// whitespace characters only.

function isWhitespace(s)
{   var i;

    // Is s empty?
    if (isEmpty(s)) {return true;}

    // Search through string's characters one by one
    // until we find a non-whitespace character.
    // When we do, return false; if we don't, return true.

    for (i = 0; i < s.length; i++)
    {   
	// Check that current character isn't whitespace.
	var c = s.charAt(i);

	if (whitespace.indexOf(c) == -1) {return false;}
    }

    // All characters are whitespace.
    return true;
}

function stripCharsInBag(s, bag){
	var i;
    var returnString = "";
    // Search through string's characters one by one.
    // If character is not in bag, append to returnString.
    for (i = 0; i < s.length; i++){   
        var c = s.charAt(i);
        if (bag.indexOf(c) == -1) returnString += c;
    }
    return returnString;
   
}

function isInteger(s){
	var i;
    for (i = 0; i < s.length; i++){   
        // Check that current character is number.
        var c = s.charAt(i);
        if (((c < "0") || (c > "9"))) return false;
    }
    // All characters are numbers.
    return true;
}

 function checkIntPhone(strPhone){
 
 //var digits = "0123456789";
 
 var phoneNumberDelimiters = "()-.' '";
 
 var validWorldPhoneChars = phoneNumberDelimiters + "+";
 
 var minDgtsIntPhoneNum = 10;
  
   
   s= stripCharsInBag(strPhone, validWorldPhoneChars);
   return (isInteger(s)&& s.length >= minDgtsIntPhoneNum);
  }
  
   /*s= stripCharsInBag(strPhone, validWorldPhoneChars);
   if((isInteger(s))&&(s.length >= minDgtsIntPhoneNum)){
   return true;
     }
   else
   {return false;
   }
  }
function emailvalidation(em)
	{
		strRegExp= /^[\w\-\.]+@[a-zA-Z0-9]+[\-]?[a-zA-Z0-9]+((\.(com|net|org|edu|int|mil|gov|COM|NET|ORG|EDU|INT|MIL|GOV))|(\.(com|net|org|edu|int|mil|gov|COM|NET|ORG|EDU|INT|MIL|GOV)\.[a-zA-Z]{2})|(\.[a-zA-Z]{2}))$/;
		
		if (!strRegExp.test(em))
		{ return false;
		}
		return true;
	}*/

	function emailvalidation(em)
	{
		strRegExp= /^[\w\-\.]+@[a-zA-Z0-9\-\.\_]+((\.(com|net|org|edu|int|mil|gov))|(\.(com|net|org|edu|int|mil|gov)\.[a-zA-Z]{2})|(\.[a-zA-Z]{2}))$/;
		var xx= em;
		xx= xx.toLowerCase();
		
		if (!strRegExp.test(xx))
		{ return false;
		}
		return true;
	}

function stripYr(x){

	 var tdy= new Date();
     var month= tdy.getMonth() + 1;
     var date= tdy.getDate();
     var year= tdy.getFullYear();
     
     if ((x=="")||(!isInteger(x))){
     alert("This is a required field. Please enter a 4 digit Year of Graduation.");
     return false;
     }
     else if (year>=x){
     alert("Based on your Graduation Year entry, your child has \n"
     + "either already Graduated OR is graduating this year. \n"
     + "Your child must have AT LEAST one season of football eligibility left.");
     return false;
     }else {
     return true;
     }

}

function msg(){
alert("This is a required field.  PLEASE fill it out.");
}

function msgRad(){
alert("PLEASE choose \"yes\" or \"no\".");
}


function ValidateML()
{
 
 
  var Val = document.mailList.paFname.value;
      Val = trim(Val);
  
        
   if ((Val == "")||(isWhitespace(Val)))
{
  msg();
  document.mailList.paFname.focus();
  return false;
}   

 var Val = document.mailList.paLname.value;
      Val = trim(Val);
  
        
   if ((Val == "")||(isWhitespace(Val)))
{
  msg();
  document.mailList.paLname.focus();
  return false;
}   

 var Val = document.mailList.plFname.value;
      Val = trim(Val);
  
        
   if ((Val == "")||(isWhitespace(Val)))
{
  msg();
  document.mailList.plFname.focus();
  return false;
} 
  
 var Val = document.mailList.plLname.value;
      Val = trim(Val);
  
        
   if ((Val == "")||(isWhitespace(Val)))
{
  msg();
  document.mailList.plLname.focus();
  return false;
}

var Val = document.mailList.addr.value;
      Val = trim(Val);
  
        
   if ((Val == "")||(isWhitespace(Val)))
{
  msg();
  document.mailList.addr.focus();
  return false;
}

var Val = document.mailList.city.value;
      Val = trim(Val);
  
        
   if ((Val == "")||(isWhitespace(Val)))
{
  msg();
  document.mailList.city.focus();
  return false;
}

var Val = document.mailList.cboState.value;
      Val = trim(Val);
  
        
   if ((Val == "")||(isWhitespace(Val)))
{
  alert("Please choose a State OR click the \"Outside the USA\" option");
  document.mailList.cboState.focus();
  return false;
}

var Val = document.mailList.zip.value;
      Val = trim(Val);
  
        
   if ((Val == "")||(isWhitespace(Val))||(Val.length < 4))
{
  alert("ENTRY IS REQUIRED.  You must enter a VALID Zip Code. \n"
  + "No less than 4 characters allowed. \n"
  + "If you do not know the zip code please enter \"XXXXX\"");
  document.mailList.zip.focus();
  return false;
}

    
var Val = document.mailList.hPhone.value;
      Val = trim(Val);
  
        
   if (checkIntPhone(Val)==false)
{
  alert("Please enter a valid phone number.\n"
  +"Must be at least 10 digits.");
  document.mailList.hPhone.focus();
  return false;
}   

var Val = document.mailList.aPhone.value;
      Val = trim(Val);
  
        
   if (Val==""){
   } else if(checkIntPhone(Val)==false){
   
  alert("This is NOT A REQUIRED FIELD. You have two\(2\) options\: \n"
  + "Option 1 - Leave the field blank. \n"
  + "Option 2 - Enter a valid phone number.\n"
  + "A valid phone number must be at least 10 digits.");
  document.mailList.aPhone.focus();
  return false;
}     

var Val = document.mailList.gradYr.value;
    Val = trim(Val);
  
        
   if (stripYr(Val)==false)
{
  document.mailList.gradYr.focus();
  return false;
}     


var Val = document.mailList.eMail.value;
      Val = trim(Val);
  
        
   if (emailvalidation(Val)==false)
{
  alert("Enter a valid email address.");
  document.mailList.eMail.focus();
  return false;
}     


/*var Val = document.mailList.txtCity.value;
      Val = trim(Val);
  
        
   if ((Val == "")||(isWhitespace(Val)))
{
  msg();
  document.mailList.txtCity.focus();
  return false;
}     

var Val = document.mailList.cboState.value;
      Val = trim(Val);
  
        
   if ((Val == "")||(isWhitespace(Val)))
{
  alert("Please choose a State OR click the \"Outside the USA\" option");
  document.mailList.cboState.focus();
  return false;
  }     

var Val = document.mailList.txtZip.value;
      Val = trim(Val);
        
   if ((Val == "")||(isWhitespace(Val)))
{
  alert("Please enter a Zip Code. \n"
  +"If you do not have a zip code \n"
  + "please enter \"XXXXX\"");
  document.mailList.txtZip.focus();
  return false;
} */    

   
else
{

 document.mailList.action = "sendInfo.asp";
 document.mailList.submit();
                        
}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}


function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

//===================================================================================================
 // Script Source: CodeLifter.com
// Copyright 2003
// Do not remove this notice.

// SETUPS:
// ===============================

// Set the horizontal and vertical position for the popup

PositionX = 100;
PositionY = 100;

// Set these value approximately 20 pixels greater than the
// size of the largest image to be used (needed for Netscape)

defaultWidth  = 750;
defaultHeight = 750;
// Set autoclose true to have the window close automatically
// Set autoclose false to allow multiple popup windows

var AutoClose = true;

// Do not edit below this line...
// ================================
if (parseInt(navigator.appVersion.charAt(0))>=4){
var isNN=(navigator.appName=="Netscape")?1:0;
var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}
var optNN='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
var optIE='scrollbars=no,width=150,height=100,left='+PositionX+',top='+PositionY;
function popImage(imageURL,imageTitle){
if (isNN){imgWin=window.open('about:blank','',optNN);}
if (isIE){imgWin=window.open('about:blank','',optIE);}
with (imgWin.document){
writeln('<html><head><title>Loading...</title><style>body{margin:0px;}</style>');writeln('<sc'+'ript>');
writeln('var isNN,isIE;');writeln('if (parseInt(navigator.appVersion.charAt(0))>=4){');
writeln('isNN=(navigator.appName=="Netscape")?1:0;');writeln('isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}');
writeln('function reSizeToImage(){');writeln('if (isIE){');writeln('window.resizeTo(100,100);');
writeln('width=100-(document.body.clientWidth-document.images[0].width);');
writeln('height=100-(document.body.clientHeight-document.images[0].height);');
writeln('window.resizeTo(width,height);}');writeln('if (isNN){');
writeln('window.innerWidth=document.images["George"].width;');writeln('window.innerHeight=document.images["George"].height;}}');
writeln('function doTitle(){document.title="'+imageTitle+'";}');writeln('</sc'+'ript>');
if (!AutoClose) writeln('</head><body bgcolor=000000 scroll="no" onload="reSizeToImage();doTitle();self.focus()">')
else writeln('</head><body bgcolor=000000 scroll="no" onload="reSizeToImage();doTitle();self.focus()" onblur="self.close()">');
writeln('<img name="George" src='+imageURL+' style="display:block"></body></html>');
close();		
}}

  
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);


function winOpener(page,w,h,left,right){
 
window.open("http://www.cbhsbooster.us/"+page+"","ro","scrollbars=no,resizable=no,toolbar=no,menubar=no,width="+w+",height="+h+",left="+left+",top="+right+"");
  
}

function winOpenerScroll(page,w,h,left,right){
 
window.open("http://www.cbhsbooster.us/"+page+"","ro","scrollbars=yes,resizable=no,toolbar=no,menubar=no,width="+w+",height="+h+",left="+left+",top="+right+"");
  
}


function openWinV(page,pgname,w,h,left,right){
 
window.open(page,pgname,"scrollbars=no,resizable=no,toolbar=no,menubar=no,width="+w+",height="+h+",left="+left+",top="+right+"");
  
}

function Arch(){

document.write('<form name="archive" method="post"><p align="center"><select name="cboArch" size="1" onchange="boltArch(\'a\');">');
document.write('<option selected value="none">-- Previous articles --</option>');
//document.write('<option value="2010Game1BA.htm">2010 Game 1 - Boyd Anderson</option>');
document.write('<option value="x">----------------------------------------------</option>');
document.write('<option value="20091stRndCarolCity.htm">2009 1st Rnd State Playoff - Carol City</option>');
document.write('<option value="2009Game10StThomas.htm">2009 Game 10 - St. Thomas</option>');
document.write('<option value="2009Game9Everglades.htm">2009 Game 9 - Everglades</option>');
document.write('<option value="2009Game8Taravella.htm">2009 Game 8 - Taravella</option>');
document.write('<option value="2009Game6Western.htm">2009 Game 6 - Western</option>');
document.write('<option value="2009Game5Flanagan.htm">2009 Game 5 - Flanagan</option>');
document.write('<option value="2009Game4Dillard.htm">2009 Game 4 - Dillard</option>');
document.write('<option value="2009Game3DeerfldBch.htm">2009 Game 3 - Deerfield Beach</option>');
document.write('<option value="2009Game2Plant.htm">2009 Game 2 - Plantation</option>');
document.write('<option value="2009Game1BA.htm">2009 Game 1 - Boyd Anderson</option>');
document.write('<option value="x">----------------------------------------------</option>');
document.write('<option value="2008Game1Dillard.htm">2008 Game 1 - Dillard</option>');
document.write('<option value="2008Game2BA.htm">2008 Game 2 - Boyd Anderson</option>');
document.write('<option value="2008Game3Western.htm">2008 Game 3 - Western</option>');
document.write('<option value="2008Game4KatyTx.htm">2008 Game 4 - Katy (Texas)</option>');
document.write('<option value="2008Game5Miramar.htm">2008 Game 5 - Miramar</option>');
document.write('<option value="2008Game6HHills.htm">2008 Game 6 - Hollywood Hills</option>');
document.write('<option value="2008Game7SoPlant.htm">2008 Game 7 - South Plantation</option>');
document.write('<option value="2008Game8Flanagan.htm">2008 Game 8 - Flanagan</option>');
document.write('<option value="2008Game9Everglades.htm">2008 Game 9 - Everglades</option>');
document.write('<option value="2008Game10Plantation.htm">2008 Game 10 - Plantation</option>');
document.write('<option value="20081stRndNMB.htm">2008 1st Rnd State Playoff - N Miami Bch</option>');
document.write('<option value="20082ndRndMiramar.htm">2008 2nd Rnd State Playoff - Miramar</option>');
document.write('<option value="x">----------------------------------------------</option>');
document.write('<option value="2007Game1Dillard.htm">2007 Game 1 - Dillard</option>');
document.write('<option value="2007Game2BA.htm">2007 Game 2 - Boyd Anderson</option>');
document.write('<option value="2007Game3Western.htm">2007 Game 3 - Western</option>');
document.write('<option value="2007Game4Parkway.htm">2007 Game 4 - Parkway Academy</option>');
document.write('<option value="2007Game5Miramar.htm">2007 Game 5 - Miramar</option>');
document.write('<option value="2007Game6HollywoodHills.htm">2007 Game 6 - Hollywood Hills</option>');
document.write('<option value="2007Game7SouthPlantation.htm">2007 Game 7 - South Plantation</option>');
document.write('<option value="2007Game8Flanagan.htm">2007 Game 8 - Flanagan</option>');
document.write('<option value="2007Game9Everglades.htm">2007 Game 9 - Everglades</option>');
document.write('<option value="2007playoff1stRndNorland.htm">2007 1st Rnd State Playoff - Norland</option>');
document.write('<option value="2007playoff2ndRndNMB.htm">2007 2nd Rnd State Playoff - N Miami Bch</option>');
document.write('<option value="VarsitySchedule2007.htm">2007 Schedule Results</option>');
document.write('<option value="x">----------------------------------------------</option>');
document.write('<option value="2006Game1StThomas.htm">2006 Game 1 - St. Thomas</option>');
document.write('<option value="2006Game2BA.htm">2006 Game 2 - Boyd Anderson</option>');
document.write('<option value="x">2006 Game 4 - Plantation(cancelled)</option>');
document.write('<option value="2006Game5SouthPlant.htm">2006 Game 5 - South Plantation</option>');
document.write('<option value="2006Game6Everglades.htm">2006 Game 6 - Everglades</option>');
document.write('<option value="2006Game7NE.htm">2006 Game 7 - Northeast</option>');
document.write('<option value="2006Game8Flanagan.htm">2006 Game 8 - Flanagan</option>');
document.write('<option value="2006Game9Miramar.htm">2006 Game 9 - Miramar</option>');
document.write('<option value="2006Game10Western.htm">2006 Game 10 - Western</option>');
document.write('<option value="2006PlayoffNMB.htm">2006 1st Rnd State Playoff - North Miami Bch</option>');
document.write('<option value="VarsitySchedule2006.htm">2006 Schedule Results</option>');
document.write('<option value="x">----------------------------------------------</option>');
document.write('<option value="2005KickoffClassic.htm">2005 Kickoff Classic</option>');
document.write('<option value="2005Game1STA.htm">2005 Game 1 - St Thomas(canc)</option>');
document.write('<option value="2005Game2BA.htm">2005 Game 2 - Boyd Anderson</option>');
document.write('<option value="2005Game3HHills.htm">2005 Game 3 - Hollywood Hills</option>');
document.write('<option value="2005Game4Plant.htm">2005 Game 4 - Plantation</option>');
document.write('<option value="2005Game5SPlant.htm">2005 Game 5 - South Plantation</option>');
document.write('<option value="2005Game6Everglades.htm">2005 Game 6 - Everglades</option>');
document.write('<option value="2005Game7NE.htm">2005 Game 7 - Northeast</option>');
document.write('<option value="2005Game8Flanagan.htm">2005 Game 8 - Flanagan</option>');
document.write('<option value="2005Game9Miramar.htm">2005 Game 9 - Miramar</option>');
document.write('<option value="VarsitySchedule2005.htm">2005 Schedule Results</option>');
document.write('<option value="x">----------------------------------------------</option>');
document.write('<option value="2004preview.htm">2004 preview</option>');
document.write('<option value="2004KickoffClassic.htm">2004 Kickoff Classic- Taravella</option><option value="2004Game1Everglades.htm">2004 Game 1- Everglades</option>');
document.write('<option value="2004Game2Nova.htm">2004 Game 2- Nova</option><option value="2004Game3Flanagan.htm">2004 Game 3- Flanagan</option>');
document.write('<option value="2004Game4SouthBroward.htm">2004 Game 4- South Broward</option><option value="2004Game5CooperCity.htm">2004 Game 5- Cooper City</option>');
document.write('<option value="2004Game6Miramar.htm">2004 Game 6- Miramar</option><option value="2004Game7SouthPlantation.htm">2004 Game 7- South Plantation</option>');
document.write('<option value="2004Game8Western.htm">2004 Game 8- Western</option><option value="2004DistrictPlayoff.htm">2004 District Playoff</option>');
document.write('<option value="VarsitySchedule2004.htm">2004 Schedule Results</option>');
document.write('</select></form></td><td>&nbsp;&nbsp;&nbsp;&nbsp;</td><td valign="bottom" align="right"><p align="center"><form name="signees" method="post"><p align="center">');
//document.write('<select name="cboArch" id="tsID" size="1" onchange="boltArch();"><option selected value="none">-- Senior College Signings --');
document.write('<select name="cboArch" size="1" onchange="boltArch(\'s\');"><option selected value="none">-- Senior College Signings --');
document.write('<option value="helmets10.htm">2010 Senior College Football Signings</option>');
document.write('<option value="helmets09.htm">2009 Senior College Football Signings</option>');
document.write('<option value="helmets08.htm">2008 Senior College Football Signings</option>');
document.write('<option value="helmets07.htm">2007 Senior College Football Signings</option>');
document.write('<option value="helmets06.htm">2006 Senior College Football Signings</option>');
document.write('<option value="helmets.htm">2005 Senior College Football Signings</option></select></form>');

 }


/*function boltArch(){

var v = document.signees.cboArch.value;

if (v=="none"){
//do nothing 
} else {
winOpenerScroll(v,705,500,100,50);
 }
}*/


function boltArch(v){
var x;
var z;
var w;
var h;

if (v=="a"){
 z= "yes";
 w=634;
 h=600;
var arch= document.archive.cboArch.value;} //end first if
if (v=="s"){
 z= "yes";
 var arch= document.signees.cboArch.value;
 //  if ((arch.substring(0,4)=="2007")||(arch.substring(0,4)=="2006")||(arch.substring(0,4)=="2008")){
//     h=500;}
  // if ((arch.substring(0,4)=="2005")||(arch.substring(0,4)=="2009")){
 h=520;
 w=705;
 }  // end 2nd if
 
if ((arch=="none")||(arch=="x")){
document.archive.cboArch.value="none";

}else {

if (v=="a"){
x=window.open("http://www.cbhsbooster.us/BoltArchives/"+arch+"","x","scrollbars="+z+",resizable=no,toolbar=no,menubar=no,width="+w+",height="+h+",left=25,top=25");
}else{
x=window.open("http://www.cbhsbooster.us/"+arch+"","x","scrollbars="+z+",resizable=no,toolbar=no,menubar=no,width="+w+",height="+h+",left=25,top=25");
}
x.focus()
}
}

function doBlink() {
	var blink = document.all.tags("BLINK");
	for (var i=0; i<blink.length; i++)
		blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : ""; 
}

function startBlink() {
	if (document.all)
		setInterval("doBlink()",750);
}

function navBarCBF(){

document.write('<td><p align="center"><font face="Verdana" style="font-size:10pt" color="#FFCC66"><b><a href="http://www.cbhsbooster.us">HOME</a></b></font></td>');
document.write('</tr><tr><td><p align="center"><b><font face="Verdana" size="1" color="#FFCC66"><a href="http://www.cbhsbooster.us/news.html">GRIDIRON NEWS</a>');
document.write('</font></b></font></td></tr><tr><td class="navbar"><p align="center"><font size="1" color="#FFCC66" face="Verdana"><b>');
document.write('<a href="http://www.cbhsbooster.us/VarsitySchedule.html">2010 VARSITY SCHEDULE</a></b></font></td></tr><tr><td class="navbar">');
document.write('<p align="center"><b><font face="Verdana" size="1" color="#FFCC66"><a href="http://www.cbhsbooster.us/scheduleJV.html">2010 J.V. SCHEDULE</a>');
document.write('</font></b></td></tr><tr><td class="navbar"><p align="center"><b><font size="1" color="#FFCC66" face="Verdana">');
document.write('<a href="http://www.cbhsbooster.us/meetings.html">BOOSTER MEETINGS</a></font></b></td></tr><tr><td class="navbar">');
document.write('<p align="center"><b><a href="http://www.cbhsbooster.us/announce.html">ANNOUNCEMENTS</a></td></tr><tr><td class="navbar">');
document.write('<p align="center"><a href="http://www.cbhsbooster.us/roster.asp">ROSTER</a></td></tr><tr><td class="navbar">');
document.write('<p align="center"><b><font face="Verdana" size="1" color="#FFCC66"><a href="http://www.cbhsbooster.us/camps.html">CAMPS</a></font></b></td>');
//document.write('</tr><tr><td class="navbar"><p align="center"><b><font face="Verdana" size="1" color="#FFCC66">');
//document.write('<a href="http://www.cbhsbooster.us/statistics.asp">TEAM STATISTICS</a></font></b></td>');
document.write('</tr><tr><td class="navbar"><p align="center"><b><font face="Verdana" size="1" color="#FFCC66"><a href="http://www.cbhsbooster.us/contact.asp">CONTACT INFO</a></font></b></td>');
document.write('</tr><tr><td class="navbar"><p align="center">&nbsp;</td>');
document.write('</tr><tr><td class="navbar"><p align="center">&nbsp;</td>');
document.write('</tr><tr><td class="navbar"><p align="left"><a target="blank" href="http://www.ithreephoto.com/"><img src="images/images2008/iThreeT.jpg" width="140" height="196"></a></font></b></td>');
//document.write('</tr><tr><td class="navbar"><p align="center"><b><font face="Verdana" size="1" color="#FFCC66">');
//document.write('<a href="http://www.cbhsbooster.us/collegelinks.html">COLLEGE LINKS</a></font></b></td>');
//document.write('</tr><tr><td class="navbar"><p align="center"><a href="http://www.cbhsbooster.us/login.asp">Admin Use only</a></td>');

}

function navFooter(){

document.write('<td width="97%" align="center" class="bottom"><font style="font-weight: 400; font-size:8pt" color="#0000FF">| <a href="http://www.cbhsbooster.us">Home</a> | '); 
document.write('<a href="http://www.cbhsbooster.us/news.html">Gridiron News</a> | ');
document.write('<a href="http://www.cbhsbooster.us/VarsitySchedule.html">2010 Varsity Schedule</a> | <a href="http://www.cbhsbooster.us/scheduleJV.html">2010 J.V. Schedule</a> | '); 
document.write('<a href="http://www.cbhsbooster.us/meetings.html">Booster Meetings</a> |<br>| <a href="http://www.cbhsbooster.us/announce.html">Announcements</a> | ');
document.write('<a href="http://www.cbhsbooster.us/camps.html">Camps</a> | <a href="http://www.cbhsbooster.us/contact.asp">Contact Info</a> |</font></td>');

/* old footer *** document.write('<a href="http://www.cbhsbooster.us/camps.html">Camps</a> | <a href="http://www.cbhsbooster.us/profiles.asp">Profiles</a> | ');
document.write('<a href="http://www.cbhsbooster.us/statistics.asp">Team Statistics</a> | <a href="http://www.cbhsbooster.us/contact.asp">Contact Info</a> | ');
document.write('<a href="http://www.cbhsbooster.us/collegelinks.html">College Links</a> |</font></td>'); */


}

