var COSECHAS = {
	init : function()
	{
		if (document.getElementById('detalle_vino'))
		{
			document.getElementById('sel_vinos').onchange = function()
			{
				var vino = document.getElementById('sel_vinos').options[document.getElementById('sel_vinos').selectedIndex].id;
				if (vino != 'op_cosecha0')
				{
					COSECHAS.poneracero();
					document.getElementById('notacata').className = 'dblock';
					document.getElementById('titulo_vino').innerHTML = 'Pintia '+document.getElementById(vino).innerHTML.replace('PINTIA Cosecha ','');
					document.getElementById(vino.replace('op_','capa_')+'_tecnica').className = 'dblock';
				}
				else
				{
					COSECHAS.poneracero();
				}
			}
		}
		document.getElementById('notacata').onclick = function()
		{
			document.getElementById('notacata').className = 'dnone';
			document.getElementById('fichatecnica').className = 'dblock';
			var vino = document.getElementById('sel_vinos').options[document.getElementById('sel_vinos').selectedIndex].id;
			document.getElementById(vino.replace('op_','capa_')+'_tecnica').className = 'dnone';
			document.getElementById(vino.replace('op_','capa_')+'_notacata').className = 'dblock';
			return false;
		}
		document.getElementById('fichatecnica').onclick = function()
		{
			document.getElementById('fichatecnica').className = 'dnone';
			document.getElementById('notacata').className = 'dblock';			
			var vino = document.getElementById('sel_vinos').options[document.getElementById('sel_vinos').selectedIndex].id;
			document.getElementById(vino.replace('op_','capa_')+'_notacata').className = 'dnone';
			document.getElementById(vino.replace('op_','capa_')+'_tecnica').className = 'dblock';
			return false;
		}
	},
	poneracero : function()
	{
		document.getElementById('titulo_vino').innerHTML = 'Pintia ';		
		document.getElementById('notacata').className = 'dnone';
		document.getElementById('fichatecnica').className = 'dnone';
		var existe = true;
		cont = 1;
		while (existe)
		{
			if (document.getElementById('capa_cosecha'+cont+'_notacata'))
			{
				document.getElementById('capa_cosecha'+cont+'_notacata').className = 'dnone';
				document.getElementById('capa_cosecha'+cont+'_tecnica').className = 'dnone';
				++cont;
			}
			else
			{
				existe = false;
			}
			
		}
	}
}


/* LOAD */

function addLoadEvent(fn)
 {
	var old = window.onload;
	if(typeof window.onload != 'function')
		window.onload = fn;
	else
		window.onload = function()
		 {
			old();
			fn();
		 }
 }

addLoadEvent( function() { COSECHAS.init(); } );