// JavaScript Document
function Horarios(ateAs)
{

var x=document.getElementById("horario");

  for (i=0;i<50;i++)
    {
   x.remove(x.options[i]);

    }

try
  {

	var y=document.createElement('option');
	y.text="Selecione";
	x.add(y,null); 
	var y=document.createElement('option');
	y.text="-------------";
	x.add(y,null); 
	 
	  for(j = 7; j <= ateAs; j++){
		if(j < 10){
			j = "0"+j;
			}	
			if(j != 7){
		var y=document.createElement('option');
		y.text=j+":00";
		y.value=j+":00";
	  x.add(y,null); 
				}

	  if(j != ateAs){
		var y=document.createElement('option');
		y.text=j+":30";
		y.value=j+":30";
	  x.add(y,null); 
	  }
	}

  }
catch(ex)
  {
	  
	var y=document.createElement('option');
	y.text="Selecione";
	x.add(y); 
	var y=document.createElement('option');
	y.text="-------------";
	x.add(y); 
	  
 for(j = 7; j <= ateAs; j++){
		if(j < 10){
			j = "0"+j;
			}	
			if(j != 7){
		var y=document.createElement('option');
		y.text=j+":00";
		y.value=j+":00";
	  x.add(y);
				}

	  if(j != ateAs){
		var y=document.createElement('option');
		y.text=j+":30";
		y.value=j+":30";
	  x.add(y);
		  }
 }
  }
}