function $(pStyleId)
{
	return document.getElementById(pStyleId);
}

function accionCheckboxEmail(pIdCheckbox, pIdEmail)
{
	var wCheckboxElement = $(pIdCheckbox);
	
	if( $(pIdCheckbox).checked  == true )
	{
		if( w_ultimo_email != '' )
		{
			// si hay hemos puesto el e-mail en algún momento, lo reutilizamos
			$(pIdEmail).value = w_ultimo_email;
		}
	}
	else
	{
		// borramos el e-mail asociado
		$(pIdEmail).value = '';
	}
}

function accionEmail(pIdEmail)
{
	// solamente nos guardamos el email si no lo hemos borrado
	if( $(pIdEmail).value != '' )
	{
		w_ultimo_email = $(pIdEmail).value;
	}
}

function accionRadioCompraria()
{
	if( $('compraria_escritorio_s').checked == true || $('compraria_escritorio_n').checked == true )
	{
		$('txt_compraria_escritorio').value = '';
	}
}

function limitaTextArea(pTextArea, pMaxLength)
{
	if( pTextArea.value.length > pMaxLength )
	{
		pTextArea.value = pTextArea.value.substr(0, pMaxLength);
	}
}
