

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 openWin(x){

	window.open(x,"NewWin","menubar=no,toolbar=no,location=no,directories=no,status=yes,scrollbars=yes,resizable=yes,width=520,height=500,left=100,top=130");

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

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

