﻿// JScript File


  function ctrlValidation( ctrlid,comparestr,returnstr )
	{
		var x=document.getElementById(ctrlid);
		if(x.value==comparestr)
		{
			x.value=returnstr;
		}

	}
	
	
	function msgAlert()
	{
	    alert("please check your ID and Password");
	}
	
	




