function ToggleFirstPopup()
        {
        
           var IDRad1= getClientSideID1();         
         
            eval(IDRad1).ShowPopup();
          
        }

        function ToggleSecondPopup()
        {
        	 var IDRad2= getClientSideID2();
              eval(IDRad2).ShowPopup();
           
        }
        
        /*document.onkeydown = handleKeyPress; //non-ie
		document.onkeypress = handleKeyPress; //ie
		//capture enter button pressed anywhere on page and stop it from submitting form, 
		//since it may not hit the correct submit button & fire the wrong event on the server side
		function handleKeyPress(e)
		{
				if(!e){
					e = window.event;
				}
				key = e.keyCode;
			//do nothing
			if(key==13){
				return false;
			}
		}
		
        function submitSearch(e){
			var buttonref = document.getElementById("uscSearch_btnSearch");
			if(!e){
				e = window.event;
			}
			key = e.keyCode;
			if(key==13){
				//capture enter button pressed and submit form
				buttonref.click();
			}
		}
		*/
		function setDateTo()
		{
		   
            // if (!(document.getElementById(getClientSideID1()).value.length=0) || !(document.getElementById(getClientSideID2()).value=null))
              //   var aXX= document.getElementById(getClientSideID1()).value; ///do nothing
               // alert(document.getElementById(getClientSideID1()).value);
                //document.getElementById(getClientSideID2()).setDate(date.getDate());
               //document.getElementById(getClientSideID2()).SetDate(document.getElementById(getClientSideID1()).GetDate());
		}
		
		
	