window.onload = tabStripe;
function tabStripe(){
	for(i = 1; i < 50; i++){
		if(document.getElementById("tabStripe"+i)){
			for(j=1;j<document.getElementById("tabStripe"+i).getElementsByTagName("tr").length;j++){
				if(j%2 != 0){
					document.getElementById("tabStripe"+i).getElementsByTagName("tr")[j].style.backgroundColor = "#F5F5F5";
				}
			}
		}
	}
}
function doFieldActive(id){
	if(document.getElementById(id)){
		document.getElementById(id).className = "formField-on";
	}
}
function doFieldPassive(id){
	if(document.getElementById(id)){
		document.getElementById(id).className = "formField";
	}
}
