function submitSMS()
{
	host = 'http://mobile.somgospel.com.br/';

	var select_op = document.getElementById('select_op').value;

	var mobile = document.getElementById('mobile-ddd').value + document.getElementById('mobile-tel').value;
	var channel = document.getElementById ( 'mobile-channel' );
	var channelId = channel.options[channel.selectedIndex].value;

	if (channelId == 0)
	{
		alert("Você precisa escolher um canal de notícias.");
		return false;
	}
	if (select_op == 0)
	{
		alert("Você precisa escolher uma operadora.");
		return false;
	}
	if (mobile.length != 10)
	{
		alert("Você precisa informar o telefone usando 10 algarismos.");
		return false;
	}
	if (select_op == 9999)
	{
		setAction(9999);
		return true;
	}
	else
	{
		var url = "sms_comprar.php?submit=true&channelId="+channelId+"&select_op="+select_op+"&mobile="+mobile;
		window.open(host+url, "sms_comprar", "width=350,height=155,status=no,toolbar=no,menubar=no,location=no");
		//return true;
	}
}

function setAction(carrierId)
{
	if (carrierId == 9999)
	{
		document.getElementById('mobile-ddd').value = "";
		document.getElementById('mobile-ddd').disabled = true;
		document.getElementById('mobile-tel').value = "";
		document.getElementById('mobile-tel').disabled = true;

		var channel   = document.getElementById ( 'mobile-channel' );
		var channelId = channel.options[channel.selectedIndex].value;
		window.open('http://200.155.11.162/hanzo/vivo_elnet.html?c='+channelId, 'sms_comprar_vivo', 'width=350,height=155,status=no,toolbar=no,menubar=no,location=no');
	}
//	else if (carrierId == 1)
//	{
//		window.open('http://mobile.somgospel.com.br/tim.html','_blank','width=480, height=480');
//	}
	else if (carrierId == '0')
	{
		document.getElementById('mobile-ddd').disabled = true;
		document.getElementById('mobile-tel').disabled = true;
	}
	else
	{
		document.getElementById('mobile-ddd').disabled = false;
		document.getElementById('mobile-tel').disabled = false;
	}
}

function writeCh()
{
	document.writeln("<option value='0' selected>Canais</option>");
	document.writeln("<option value='265'>Elnet News</option>");
	document.writeln("<option value='398'>MK News</option>");
	document.writeln("<option value='267'>Agenda</option>");
	document.writeln("<option value='266'>B&iacute;blia</option>");
}

function writeOp()
{
	document.writeln("<option value='1001'>Oi</option>");
	document.writeln("<option value='1002'>CTBC</option>");
	document.writeln("<option value='1006'>Brasil Telecom</option>");
	document.writeln("<option value='XXXX'>VIVO</option>");
	document.writeln("<option value='1005'>TIM</option>");
	document.writeln("<option value='1007'>Amaz&ocirc;nia Celular</option>");
	document.writeln("<option value='1007'>Telemig / VIVO</option>");
	document.writeln("<option value='1010'>Claro</option>");
	document.writeln("<option value='1009'>Sercomtel</option>");
}
