﻿//-------------------------------------------------------------------------------------------------------//
// Selecciona la opción																																									 //
//-------------------------------------------------------------------------------------------------------//
function selSeccion(trPrecio, tipo)
{
//	alert(document.getElementById(trPrecio));
	switch (tipo)
	{
		case 'Grif':
			document.getElementById(trPrecio).style.backgroundColor="#DFC6ED"; 
			document.getElementById(trPrecio).style.color="#009999";
			break;
		case 'Sanit':
			document.getElementById(trPrecio).style.backgroundColor="#FFF583"; 
			document.getElementById(trPrecio).style.color="#009999";
			break;
		case 'CSanit':
			document.getElementById(trPrecio).style.backgroundColor="#FFF583"; 
			document.getElementById(trPrecio).style.color="#009999";
			break;
		case 'Hidro':
			document.getElementById(trPrecio).style.backgroundColor="#D3F4D7";
			break;
		case 'Spas':
			document.getElementById(trPrecio).style.backgroundColor="#D3F4D7";
			break;
		case 'Presupuesto':
			document.getElementById(trPrecio).style.backgroundColor="#DDDDDD";
			break;
	}
	document.getElementById(trPrecio).style.cursor='hand';
}
//-------------------------------------------------------------------------------------------------------//
// Deselecciona la opción 																																							 //
//-------------------------------------------------------------------------------------------------------//
function deselSeccion(trPrecio, tipo)
{
	switch (tipo)
	{
		case 'Grif':
			document.getElementById(trPrecio).style.backgroundColor="#EBE0F1";
   		document.getElementById(trPrecio).style.color="#777777"; 
   		break;
		case 'Sanit':
			document.getElementById(trPrecio).style.backgroundColor="#FFFFCC";
   		document.getElementById(trPrecio).style.color="#777777"; 
   		break;
		case 'CSanit':
			document.getElementById(trPrecio).style.backgroundColor="#FFFFEE";
   		document.getElementById(trPrecio).style.color="#777777"; 
   		break;
		case 'Hidro':
			document.getElementById(trPrecio).style.backgroundColor="#FFFFFF";
			break;
		case 'Spas':
			document.getElementById(trPrecio).style.backgroundColor="#FFFFFF";
			break;
		case 'Presupuesto':
			document.getElementById(trPrecio).style.backgroundColor="#FFFFFF";
			break;
	}
	document.getElementById(trPrecio).style.cursor='pointer';
}
//-------------------------------------------------------------------------------------------------------//
// Ir a la sección																																											 //
//-------------------------------------------------------------------------------------------------------//
function irSeccion(txtUrl)
{
	document.location.href=txtUrl;
}
