function get(oName) {
        return document.getElementById(oName);
}

function mostrarSMS(data) {
        var sms = get('sms');
        var tlf = get('telefono');
        var tarjeta = get('tarjeta');
        var aviso = get('aviso');

        if (data == false) {
                sms.style.display = 'none';
        } else {
                sms.style.display = 'block';
                tlf.style.display = 'none';
                tarjeta.style.display = 'none';
                aviso.style.display = 'none';
        }
}

function mostrarTLF(data) {
        var sms = get('sms');
        var tlf = get('telefono');
        var tarjeta = get('tarjeta');
        var aviso = get('aviso');

        if (data == false) {
                tlf.style.display = 'none';
        } else {
                sms.style.display = 'none';
                tlf.style.display = 'block';
                tarjeta.style.display = 'none';
                aviso.style.display = 'none';
        }
}

function mostrarTarjeta(data) {
	var sms = get('sms');
	var tlf = get('telefono');
	var tarjeta = get('tarjeta');
	var aviso = get('aviso');
	
	if (data == false) {
		tarjeta.style.display = 'none';
	} else {
		sms.style.display = 'none';
		tlf.style.display = 'none';
		tarjeta.style.display = 'block';
		aviso.style.display = 'none';
	}
}

function mostrarAviso(data) {
        var sms = get('sms');
        var tlf = get('telefono');
        var tarjeta = get('tarjeta');
        var aviso = get('aviso');

        if (data == false) {
                aviso.style.display = 'none';
        } else {
                sms.style.display = 'none';
                tlf.style.display = 'none';
                tarjeta.style.display = 'none';
                aviso.style.display = 'block';
        }
}

function countryChange(control) {
	var tlf = get('botTLF');
	var legal = get('legalArea');
	var number = get('number');
	
	if (control.value == 'es') {
		tlf.style.display = 'inline';
		legal.value = "Coste de la llamada (todos los precios con IVA incluido). Esta llamada tiene un coste de 1,102 euros desde la red fija y desde 1,856 euros de la red m" + String.fromCharCode(0xF3) + "vil, impuestos incluidos.Servicio para adultos prestado por Corporaci" + String.fromCharCode(0xF3) + "n de Lineas Premium, C" + String.fromCharCode(0xF3) + "digo Postal 41930 Sevilla. Reservado a mayores de 18 a" + String.fromCharCode(0xF1) + "os.Coste del SMS: Vodafone, Amena y Movistar 1,39Eur y Movistar 1,39Eur";
		number.innerHTML = '7550';
	} else if (control.value == 've') {
		tlf.style.display = 'none';
		legal.value = "Coste de la llamada (todos los precios con IVA incluido). Servicio para adultos prestado por Corporaci" + String.fromCharCode(0xF3) + "n de Lineas Premium, C" + String.fromCharCode(0xF3) + "digo Postal 41930 Sevilla. Reservado a mayores de 18 a" + String.fromCharCode(0xF1) + "os.Coste del SMS: 2500 bol" + String.fromCharCode(0xED) + "vares";
		number.innerHTML = '210';
		mostrarSMS();
	}
}
