<HTML><HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Matthew Barrick">
<META NAME="keywords" CONTENT="VA, Virginia, Wrestling, Officials, Association">
<META NAME="description" CONTENT="CVWOA - Central VA Wrestling Officials Association">
<TITLE>CVWOA - Central VA Wrestling Officials Association</TITLE>
<style type="text/css">
#divZoom {position:absolute; left:70px; top:397px; width:100%; text-align:center;} 
</style>
<script language="JavaScript" type="text/javascript">
/**********************************************************************************   
ZoomFade 
*   Copyright (C) 2001 <a href="/dhtmlcentral/thomas_brattli.asp">Thomas Brattli</a>
*   This script was released at DHTMLCentral.com
*   Visit for more great scripts!
*   This may be used and changed freely as long as this msg is intact!
*   We will also appreciate any links you could give us.
*
*   Made by <a href="/dhtmlcentral/thomas_brattli.asp">Thomas Brattli</a> 
*********************************************************************************/

function lib_bwcheck(){ //Browsercheck (needed)
	this.ver=navigator.appVersion
	this.agent=navigator.userAgent
	this.dom=document.getElementById?1:0
	this.opera5=this.agent.indexOf("Opera 5")>-1
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom && !this.opera5)?1:0; 
	this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom && !this.opera5)?1:0;
	this.ie7=(this.ver.indexOf("MSIE 7")>-1 && this.dom && !this.opera5)?1:0;
	this.ie4=(document.all && !this.dom && !this.opera5)?1:0;
	this.ie=this.ie4||this.ie5||this.ie6||this.ie7
	this.mac=this.agent.indexOf("Mac")>-1
	this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0; 
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie7 || this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5)
	return this
}
var bw=new lib_bwcheck()


/*Here are the variables you have to set, play with different values:                                                                 
First the text: (it will stop and fade/change the colors on the last one)*/
zText=new Array('www','CVWOA','com','www.CVWOA.com')
  
//Now the colors:
//all you have to do is set the color you want to have in here: 
//(the first color will be the color that the text is when it zooms.)
//zColor=new Array('#202020','#424242','#8E8E8E','#C2C2C2','#E8E8E8')
zColor=new Array('#202020','#424242','#8E8E8E','#C2C2C2','#bbbbbb')
//50 
var zEndSize=40   //The fontsize in px you want the zoom to end at
var zSpeed=70     //Zoom speed
var zAddSize=5    //Px to add to the fontsize on each interval
var zFadeSpeed=70 //Color change/fade speed
var zFont='arial black,arial,helvetica,sans-serif' //Font
var zHide=false    //do you want it to hide when its done? (true or false)
var zHideWait=70  //Time to wait before hiding
var zStartSize=4 //The size to start at
var zEndCode=""   // Code to execute when the zoom and fade is finished. ie: "location.href='newpage.html', executes when the hide does.

/*You can remove this if you don't wan't it to start right away.
You can have it start if someone clicks a link (make a link like this:
<a href="#" onload="fadeInit()">Click to Zoomtext</a>)*/
onload=zoomInit;

/********* You shouldn't really have to set anything below this point ***********/

//Object functions
function makeZoomObj(obj,font,size,endsize,color,text,zspeed,fadespeed,addsize,hide,hidewait,endcode){
   	this.css=bw.dom? document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?document.layers[obj]:0;	
   	this.writeref=bw.dom? document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?document.layers[obj].document:0;	
	this.zoomWrite=b_zoomWrite;	this.zoomIt=b_zoomIt; this.fadeIt=b_fadeIt;	this.zoomFade=b_zoomFade;
	this.font=font; this.color=new Array(); this.color=eval(color);	this.text=new Array(); this.text=eval(text);
	this.zspeed=zspeed; this.fadespeed=fadespeed; this.addsize=addsize; this.endcode=endcode
	this.hide=hide; this.hidewait=hidewait; this.size=size; this.startsize=size; this.endsize=endsize
	if(size<endsize){this.way="<"; this.addsize=this.addsize
    }else{this.way=">"; this.addsize=-this.addsize}
	if(bw.dom || bw.ie4){ //Setting the style properties
		this.css.fontFamily=this.font; this.css.fontSize=this.size+"px"; this.css.color=this.color[0]
	}
	this.obj = obj + "Object"; 	eval(this.obj + "=this"); return this
}
function b_zoomFade(num){
	if(num<this.text.length){
		this.size=this.startsize
		this.zoomIt(num,'this.zoomFade('+(num+1)+')')
	}
	else if(num==this.text.length) this.fadeIt(0,'this.zoomFade('+(num+1)+')')
	else if(this.hide) setTimeout(this.obj+".css.visibility='hidden'; eval("+this.obj+".endcode)",this.hidewait)
}
function b_zoomWrite(num,cnum){
	if(bw.ns4){
		this.writeref.write('<span style="text-align:center; font-size:' +this.size+'px; font-family:'+this.font+'; color:'+this.color[cnum]+'">'+this.text[num]+'</span>')
		this.writeref.close()
	}else this.writeref.innerHTML="<center>"+this.text[num]+"</center>"
}
function b_zoomIt(num,fn){
	if(eval(this.size+this.way+this.endsize)){
		if(this.size==this.startsize || bw.ns4) this.zoomWrite(num,0)
		if(bw.dom || bw.ie4) this.css.fontSize=this.size+"px"
		this.size=this.size+this.addsize
		setTimeout(this.obj+".zoomIt("+num+",'"+fn+"')",this.zspeed)
	}else eval(fn)	
}
function b_fadeIt(num,fn){
	if(num<this.color.length){
		if(bw.ns4) this.zoomWrite(this.text.length-1,num)
		else this.css.color=this.color[num]
		num++
		setTimeout(this.obj+".fadeIt("+num+",'"+fn+"')",this.fadespeed)
	}else eval(fn)	
}
/*Initiates the object, shows it and starts the zoom
****************************************************************************/
function zoomInit(){
	if(bw.bw){
		oZoom=new makeZoomObj('divZoom',zFont,zStartSize,zEndSize,'zColor','zText',zSpeed,zFadeSpeed,zAddSize,zHide,zHideWait,zEndCode)
		oZoom.zoomFade(0)
		oZoom.css.visibility='visible'
	}
}


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_showHideLayers() { //v3.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
    obj.visibility=v; }
}  //140
function submitform()
{
  document.login.ssn.value='1234';
  document.login.birthdate.value='01011901';
  document.forms[0].submit();  //error line
}

//-->
</script>
</HEAD>

<script language=javascript><!-- 

 --></script><script language=javascript><!-- 

 --></script><body text="#000000" bgcolor="#000000" link="#FF0000" vlink="#3366FF" alink="#FF0000" onLoad="MM_showHideLayers('Login','','hide'); zoomInit();">
  <form name="login" method="POST" action="login.cgi">


  <div id="divZoom" align="center"> <font color="#FFFFFF">
    <!-- older browsers will not see this -->
    </font></div>

<div id="Layer2" style="position:absolute; width:200px; height:115px; left: 5px; top: 15px; z-index:2; visibility: visible"> 
  <font color="#FFFFFF"> <img src="http://pa-softball.com/images/foldoutmenu_arrow.gif"> 
  <a href="#" onFocus="MM_showHideLayers('Login','','show');MM_showHideLayers('Layer2','','hide');">Member 
  Login</a> </font> <br>
  <font color="#FFFFFF"><img src="http://pa-softball.com/images/foldoutmenu_arrow.gif">
  <a href="http://www.cvwoa.com/login.cgi?guest">Guest</a></font> 

	<P><font color="red">Scholarship Application<br>     
	<a href="http://www.cvwoa.com/coaches/CVWOAScholarshipApplication.pdf">Adobe (.pdf)</a> :: 
	<a href="http://www.cvwoa.com/coaches/CVWOAScholarshipApplication.doc">Word (.doc)</a></font>
</div>
<div id="Login" style="position:absolute; width:300px; height:800px; left: 1px; top: 15px; z-index:1; visibility: hidden"> 


  <font color="#FFFFFF">
    Name: <BR>
    <select name="id">
	<option value="0"> </option>
	<option value="78">Ahmad Zeaiter</option>
	<option value="3">Bob Clark</option>
	<option value="4">Bob Wood</option>
	<option value="5">Bobby Byrd</option>
	<option value="80">Brett George</option>
	<option value="46">Chris Bales</option>
	<option value="10">Chris Giles</option>
	<option value="70">Chris Hulbert</option>
	<option value="11">Corey Woody</option>
	<option value="12">Craig Willingham</option>
	<option value="67">Dan Leale</option>
	<option value="49">Daniel Cobert</option>
	<option value="63">Daniel Soderholm</option>
	<option value="57">Dixon Abreu</option>
	<option value="15">Doug Schutte</option>
	<option value="16">Drew Bright</option>
	<option value="81">Elden Ross</option>
	<option value="17">George Jockish</option>
	<option value="73">Glenn Riley</option>
	<option value="66">Ivan Cruz</option>
	<option value="51">Jeff Pultz</option>
	<option value="18">Jim Henderson</option>
	<option value="71">John Leale</option>
	<option value="19">JR Johnson</option>
	<option value="60">Kevin Turner</option>
	<option value="20">Kirk Hulbert</option>
	<option value="22">Larry Haynes</option>
	<option value="23">Larry Robinson</option>
	<option value="74">Mat Drake</option>
	<option value="24">Matt Barrick</option>
	<option value="25">Matt Coleman</option>
	<option value="26">Mel Ardis</option>
	<option value="59">Michael Tarlton</option>
	<option value="27">Pat Kelleher</option>
	<option value="56">Philip Kempf</option>
	<option value="28">Ray Alexander</option>
	<option value="29">Ray Ward</option>
	<option value="43">Reid Sowder</option>
	<option value="61">Sam Bernier</option>
	<option value="77">Thomas Riley</option>
</select>
    <br>
    <br>Birthdate (mmddyyyy): <BR>
    <input type="password" name="birthdate" value="" size="12" maxlength="8">
    <br>
    <br>
    Last 4 Digits SSN: <BR>
    <input type="password" name="ssn" size="12" maxlength="4" value="">
    <br>
    <br>
    </font>
    <input type="submit" name="submit" value="Login">

</div>
<STYLE>A {text-decoration:none}</STYLE>

<CENTER>
  <font color="#FF0000" size="3" face="Arial, Helvetica, sans-serif"><B><!-- Error Text Here --></B></font>
  <nobr>
  <IMG SRC="http://pa-softball.com/images/spacer.gif" width="100" height="0" border="0"> 
  <IMG SRC="http://pa-softball.com/wrestling/images/cvwoa_main.gif" width="585" height="392"> 
  </nobr>
  <p>  <br>
<hr width="75%">
<font color="#FFFFFF" size="2" face="Arial, Helvetica, sans-serif">CVWOA.com designed and maintained by Matthew Barrick</font>
</CENTER>
  </form>

</BODY>
</HTML>


