
            
      function getFullPath(ele)
            {
            
          var  formname = document.getElementById(ele);
            
                
            	var strHref = window.location.href;
				var x = strHref;
				var y = x.split("/");
				var splitedURL =y[0]+ "//"+y[1]+y[2]+"/";
				
		
				var elementValue =formname.chooseWeek.options[formname.chooseWeek.selectedIndex].value
				
				var splitedURL1 = splitedURL+elementValue;
				
            	var getFullURL  = splitedURL1;
            	
           		window.location=getFullURL; 
            }


