//Text Box focus
	function setFocus(nameID){document.getElementById(nameID).focus();}

// Email - Javascript workaround to Mailto function
	function email(user,domain,suffix,display,subject) {
		if ((subject == 'none') && (user == "band")){
   	  		document.write('<A href=\"' + 'mailto:' + 'jake'+ '@' + domain + '.' + suffix + ';' + 'ken' + '@' + domain + '.' + suffix + ';' + 'adam' + '@' + domain + '.' + suffix + ';' + 'will' + '@' + domain + '.' + suffix + ';' + '\">' + display + '</a>');
  	 	}
		else if (subject == 'none'){
   	  		document.write('<A href=\"' + 'mailto:' + user + '@' + domain + '.' + suffix + '\">' + display + '</a>');
  		}
		else if (subject != 'none'){
	  		document.write('<A href=\"' + 'mailto:' + user + '@' + domain + '.' + suffix + '?subject=' + subject + '\">' + display + '</a>');
  	 	}
  	}

// Popup windows
	function MM_openBrWindow(theURL,features) {		
		window.open(theURL,'KathyCalderwood',features + ',screenX=50,screenY=50,left=30,top=30,scrollbars');
  		} 	
 
