// JavaScript Document
function Validar(){
check = false;
	tot = document.all.tags("INPUT");
 	for(i = 0; i < tot.length; i++) {
 		if(tot.item (i) .type == 'radio' && tot.item (i) .checked == true)
 		{			
			check = true;			
 		}
 	}
	if(!check)
	{
		alert('Você deve selecionar uma operadora.');
		return false;
	}

return true;
}
function popup(f,l,a) {
var i = (screen.width - l)/2;
var j = (screen.height - a)/2;
  window.open(f,'janelapopup','height='+a+',width='+l+',top='+j+',left='+i); 
}