 /*------------------------------------------------------*
  *-------FUNCIONES JAVASCRIPT    ----*
  *------------------------------------------------------*/


/*1 Pop Up centrada inicio (utilizada por infos legales y paginas planos) */

function popup(page,largeur,hauteur,options)
{
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

/*1 Pop Up centrada FIN  */

/*----------------------------------------------------*/
function desmarcarTodos()
{
	document.getElementById('telefonoMandosTV').src="images/productos/telefono.jpg";
	document.getElementById('telefonoMandosGaraje').src="images/productos/telefono.jpg";
	document.getElementById('telefonoContacto').src="images/productos/telefono.jpg";
	document.getElementById('telefonoEmpresa').src="images/productos/telefono.jpg";
	document.getElementById('opcionEmpresa').className = 'noSelec';
	document.getElementById('opcionMandosTV').className = 'noSelec'
	document.getElementById('opcionMandosNor').className = 'noSelec noVis';
	document.getElementById('opcionMandosPP').className = 'noSelec';
	document.getElementById('opcionMandosUni').className = 'noSelec noVis';
	document.getElementById('opcionMandosGaraje').className = 'noSelec';
	document.getElementById('opcionContacto').className = 'noSelec';
	document.getElementById('divOpcMandosNormales').className = 'subopcion';
	document.getElementById('divOpcMandosPP').className = 'subopcion';
	document.getElementById('divOpcMandosUni').className = 'subopcion';
	document.getElementById('divOpcMandosNormales').style.display = 'none';
	document.getElementById('divOpcMandosPP').style.display = 'none';
	document.getElementById('divOpcMandosUni').style.display = 'none';
}
function marcarOpcion(opc)
{
	desmarcarTodos();
	if (opc==1) {
		document.getElementById('telefonoEmpresa').src="images/productos/telefono2.jpg";
		document.getElementById('opcionEmpresa').className = 'selec';
	}else if (opc==2) {
		document.getElementById('telefonoMandosTV').src="images/productos/telefono2.jpg";
		document.getElementById('opcionMandosTV').className = 'selec';
		document.getElementById('opcionMandosNor').className = 'selecSub';
		document.getElementById('divOpcMandosNormales').style.display = 'inline';
		document.getElementById('divOpcMandosPP').style.display = 'inline';
		document.getElementById('divOpcMandosUni').style.display = 'inline';

	}else if (opc==3) {
		document.getElementById('telefonoMandosTV').src="images/productos/telefono2.jpg";
		document.getElementById('opcionMandosTV').className = 'selec';
		document.getElementById('opcionMandosNor').className = 'selecSub';
		document.getElementById('divOpcMandosNormales').style.display = 'inline';
		document.getElementById('divOpcMandosPP').style.display = 'inline';
		document.getElementById('divOpcMandosUni').style.display = 'inline';
	}else if (opc==4) {
		document.getElementById('telefonoMandosTV').src="images/productos/telefono2.jpg";
		document.getElementById('opcionMandosTV').className = 'selec';
		document.getElementById('opcionMandosPP').className = 'selecSub';
		document.getElementById('divOpcMandosNormales').style.display = 'inline';
		document.getElementById('divOpcMandosPP').style.display = 'inline';
		document.getElementById('divOpcMandosUni').style.display = 'inline';
	}else if (opc==5) {
		document.getElementById('telefonoMandosTV').src="images/productos/telefono2.jpg";
		document.getElementById('opcionMandosTV').className = 'selec';
		document.getElementById('opcionMandosUni').className = 'selecSub';
		document.getElementById('divOpcMandosNormales').style.display = 'inline';
		document.getElementById('divOpcMandosPP').style.display = 'inline';
		document.getElementById('divOpcMandosUni').style.display = 'inline';
	}else if (opc==6) {
		document.getElementById('telefonoMandosGaraje').src="images/productos/telefono2.jpg";
		document.getElementById('opcionMandosGaraje').className = 'selec';
	}else if (opc==7) {
		document.getElementById('telefonoContacto').src="images/productos/telefono2.jpg";
		document.getElementById('opcionContacto').className = 'selec';
	}
}

/*----------------------------------------------------*/

