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

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;
		}
	}

}

var img = new Array();
img[0]=new Image();img[0].src="images/01_0.gif";
img[1]=new Image();img[1].src="images/01_1.gif";
img[2]=new Image();img[2].src="images/02_0.gif";
img[3]=new Image();img[3].src="images/02_1.gif";
img[4]=new Image();img[4].src="images/03_0.gif";
img[5]=new Image();img[5].src="images/03_1.gif";
img[6]=new Image();img[6].src="images/04_0.gif";
img[7]=new Image();img[7].src="images/04_1.gif";
img[8]=new Image();img[8].src="images/05_0.gif";
img[9]=new Image();img[9].src="images/05_1.gif";
img[10]=new Image();img[10].src="images/06_0.gif";
img[11]=new Image();img[11].src="images/06_1.gif";
img[12]=new Image();img[12].src="images/07_0.gif";
img[13]=new Image();img[13].src="images/07_1.gif";
img[14]=new Image();img[14].src="images/08_0.gif";
img[15]=new Image();img[15].src="images/08_1.gif";

function b(x,y){
 if(document.getElementById){
  document.getElementById(x).style.backgroundImage='url('+img[y].src+')';
 }
 else if(document.all){
  document.all(x).style.backgroundImage='url('+img[y].src+')';
 }
}

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;


