// JScript source code
function go(Object){			
	frmMail.to.value=Object				
	frmMail.submit();						
}






function checkMail(mail){
	var cao;
	re=/(\w+@\w+\.\w+)(|.{0,1}\w*)/i;
	re.exec(mail);
	if(RegExp.$3!=""&&RegExp.$3!="."&&RegExp.$2!="."){
		cao = RegExp.$1+RegExp.$2+RegExp.$3
	}else if(RegExp.$21=""&&RegExp.$2!="."){
		cao = RegExp.$1 + RegExp.$2
	}else{
		cao = RegExp.$1
	}
	
	if (cao!=mail){
		alert("Please insert true Mail address!");
		return false;
	}else{
		return true;
	}
}

function checkString(checkString){
		var data=checkString;
		re = /[\\/:*?<>=|]/;
		if (re.test(data)){
			alert("don't insert [>] [<] [=]  [enter]!");
			return false;
		}else{
			return true;
		}
	}
	
function checkNumeric(checkData,str){	
	var data = checkData;
	re =/[^0-9].-/;  //  /[^0-9]/;
	if (re.test(data)){
		alert("Non-Numeric " + str +" entered.");
		return false;
	}else{
		return true;
	}
}

function over(obj){
	obj.style.textDecoration= "underline overline";
}
function out(obj){
	obj.style.textDecoration= "none";
}

function makevisible(cur,which){
	if (which==0)
	cur.filters.alpha.opacity=100
	else
	cur.filters.alpha.opacity=20
}

function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",100)
}
function low(which2){
	clearInterval(highlighting)
	which2.filters.alpha.opacity=30
}
function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
	cur2.filters.alpha.opacity+=10
	else if (window.highlighting)
	clearInterval(highlighting)
}