// JavaScript Document
// testing function
function subit(s,t,u,v,w) { 
	var popwin = window.open ('','tester','height=600,width=600, scrollbars=yes,resize=yes');
	popwin.document.write(s+'<br />'+t+'<br />'+u+'<br />'+v+'<br />'+w);
}

//used for coloring alternate rows of the tour table
function tourtablerow(table_name,rowheader,row1,row2) {	
	//loop over a tags inside tour div 
	rowlist=document.getElementById(table_name);	
	rowlistlinks= rowlist.getElementsByTagName('tr');
	for (i=0;i<rowlistlinks.length;i++) {
		if (i/1>0) {		
			if (i%2==1) {		
				rowlistlinks[i].setAttribute('className',row1);
				rowlistlinks[i].setAttribute('class',row1);				
			} else {			
				rowlistlinks[i].setAttribute('className',row2);
				rowlistlinks[i].setAttribute('class',row2);					
/* className is use so ie can read it */				
			}
		} else {
			rowlistlinks[i].setAttribute('className',rowheader);
			rowlistlinks[i].setAttribute('class',rowheader);					
		}
	}
}


function CloseMe() {
        parent.window.close();
}

function go(url,w,h) {
	var dim = eval('"width=' + w + ',height=' + h + ',toolbar=0, location=0,directories=0,status=0, menubar=0,scrollbars=0,resizable=yes, top=100, left=100"');
	Npop = window.open(url,"instruct",dim);
	oldWin = Npop.opener;
}

function prePopBirthday() {	
  	elem = document.getElementsByTagName('input');
  	for ( i = 0; elem.length > i +1; i++) {
  		if (elem[i].name == 'dob' ) {
  			if( elem[i].value == '') {
  				elem[i].value = 'mm/dd/yyyy';
  			}
  			elem[i].onfocus = function() {
  				if(this.value == 'mm/dd/yyyy') {
  					this.value = '';
  				}	
  			}
  		}
  	}
}

/*************************************************************************
		This code is from Dynamic Web Coding at www.dyn-web.com
		Copyright 2001-4 by Sharon Paine 
		See Terms of Use at www.dyn-web.com/bus/terms.html
		regarding conditions under which you may use this code.
		This notice must be retained in the code as is!
*************************************************************************/

function initScrollLayer() { 
   // arguments: id of layer containing scrolling layers (clipped layer), id of layer to scroll, 
   // if horizontal scrolling, id of element containing scrolling content (table?)
   var wndo = new dw_scrollObj('filmStripWrapper', 'filmStripdiv', 'filmtable');

   // pass id's of any wndo's that scroll inside tables
   // i.e., if you have 3 (with id's wn1, wn2, wn3): 
   dw_scrollObj.GeckoTableBugFix('wn1', 'wn2', 'wn3');
   dw_scrollObj.GeckoTableBugFix('filmStripWrapper'); 
}
