function CallEventTimer()
		{
		var str = document.Form1.txtRemind.value;
		//alert(str);
		//document.getElementById("TextBox1").text;
		//GetClientTime();
		//alert(str);
		
		timerID=setInterval('timerFunc();', str);
		}
		
		function timerFunc()
		{		    
		    var newWindow=window.open("EventPopup.aspx","EventList","left=0, top=0, width=450, height=300, height=600, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=yes,alwaysRaised = yes,z-lock = yes");//,"Event List","left=100, top=10, width=450, height=600, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=yes");		    		
		}
		
		function CloseEventTimer()
		{
			timerID=clearInterval(timerID);
			
		}
		 
		function close1()
		 {
			window.close();
			return true;
		  }
		  
		function GetClientTime()
		{
			var today = new Date();         
			//alert(today.toLocaleTimeString()); 					    
		    //Form1.lblClientTime.value =  today.toLocaleTimeString();	
		    		         
			//var time1 = today.toLocaleTimeString();	 
			var a1 = today.getMonth() + 1;
			var a2 = today.getDate();
			var a3 =  today.getFullYear();
			var a4 = a1 + "/" + a2 + "/" + a3 + " " + today.toLocaleTimeString();	
          
            Form1.lblClientTime.value = a4;
            //alert(a4);
			return true; 	    
		}