<!--
	function mouseOnTD(seq, bool)
	{
		var oTD = eval("document.all.list" + seq);
		var Len = oTD.length;
		var borderStyle = "1 slategray";

		if (bool)
		{
			for(var i=0; i < Len ; i++)
			{
				if(i==1)
					oTD[i].style.cursor = "pointer";
				else
					oTD[i].style.cursor = "default";
					
				oTD[i].style.backgroundColor = "#E2E2E2";
			}
		}
		else
		{
			for(var i=0; i < Len; i++)
				oTD[i].style.backgroundColor = "";
		}
	}
	function showSearchForm(obj)
	{
		document.all.search.style.display="";
		document.all.searchStr.focus();
	}
	function hideSearchForm(obj)
	{
		document.all.search.style.display="none";
	}

	function hideifrmForm(obj)
	{
		document.all.ifrm.style.display="none";
	}
	
	//e-mail check function start
	function RegularExpressionValidatorEvaluateIsValid(val)
	{
		var value = ValidatorGetValue(val.controltovalidate);
		if (ValidatorTrim(value).length == 0)
			return true;
		var rx = new RegExp(val.validationexpression);
		var matches = rx.exec(value);
		return (matches != null && value == matches[0]);
	}
	function ValidatorGetValue(id)
	{
		var control;
		control = document.all[id];
		if (typeof(control.value) == "string") {
			return control.value;
		}
		if (typeof(control.tagName) == "undefined" && typeof(control.length) == "number") {
			var j;
			for (j=0; j < control.length; j++) {
				var inner = control[j];
				if (typeof(inner.value) == "string" && (inner.type != "radio" || inner.status == true)) {
					return inner.value;
				}
			}
		}
		else {
			return ValidatorGetValueRecursive(control);
		}
		return "";
	}
	function ValidatorGetValueRecursive(control)
	{
		if (typeof(control.value) == "string" && (control.type != "radio" || control.status == true)) {
			return control.value;
		}
		var i, val;
		for (i = 0; i<control.children.length; i++) {
			val = ValidatorGetValueRecursive(control.children[i]);
			if (val != "") return val;
		}
		return "";
	}
	function ValidatorTrim(s)
	{
		var m = s.match(/^\s*(\S+(\s+\S+)*)\s*$/);
		return (m == null) ? "" : m[1];
	}
	//e-mail check function end
	
	function fadeIn(ptr_Object)
	{
		obj=ptr_Object;
		if(window.timer)
			clearInterval(timer);

		timer=setInterval("flowfilter(obj);",30);
	}
	function flowfilter(ptr_Object)
	{
		if (ptr_Object.filters.alpha.opacity<100)
			ptr_Object.filters.alpha.opacity+=5;
		else
			clearInterval(timer);
	}
	function fadeout(ptr_Object)
	{
		obj=ptr_Object;
		if(window.timer)
			clearInterval(timer);

		timer=setInterval("flowfilter_1(obj);",30);
	}
	function flowfilter_1(ptr_Object)
	{
		if (ptr_Object.filters.alpha.opacity>40)
			ptr_Object.filters.alpha.opacity-=5;
		else
			clearInterval(timer);
	}
-->
