
function om( bId ){
	if(document.getElementById){
		var spab = document.getElementById(bId);

		if(spab.style.display == "block"){
			spab.style.display = "none";
		}
		else{
			spab.style.display = "block";
		}
	}
}
function onk(x,y,z,c1,c2){

	var i=document.form1[y].value.length;

	document.form1[x].value=i;

	if(i > eval(z)){
		if(document.getElementById){
			document.getElementById(x).style.color=c1;
		}
		else if(document.all){
			document.all(x).style.color=c1;
		}
	}
	else {
		if(document.getElementById){
			document.getElementById(x).style.color=c2;
		}
		else if(document.all){
			document.all(x).style.color=c2;
		}
	}

}
function chgClass(i,c){
    document.getElementById(i).className=c; 
}

function onf(x){
	document.getElementById(x).style.visibility='visible';
}
function onb(x){
	document.getElementById(x).style.visibility='hidden';
}

function nospam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}


function blurAnchors(){
  if(document.getElementsByTagName){
    var a = document.getElementsByTagName("a");
    for(var i = 0; i < a.length; i++){
      a[i].onfocus = function(){this.blur()};
    }
  }
}


window.onload = blurAnchors;

flag=1;

