function CheckAll( sParent )
{
	colElems = document.getElementById( sParent ).getElementsByTagName( 'input' );
	for (var i = 0; i < colElems.length; i++ )
		if( colElems[i].type == 'checkbox' )
			colElems[i].checked = !(colElems[i].checked);
}
function anyCheckBoxSelected( sParent )
{
	colElems = document.getElementById( sParent ).getElementsByTagName( 'input' );
	for (var i = 0; i < colElems.length; i++ )
		if( colElems[i].type == 'checkbox' && colElems[i].checked )
			return true;
	alert( 'Selecciona algún producto para poder gestionar los favoritos' );
	return false;
}
function setInputValue( sInput, sValue )
{
	document.getElementById( sInput ).value = sValue;
}
var sTxtInputModelo = 'Introduzca el modelos de la impresora, p.ej.: 5150';
function updDsProducto( idTxtArea )
{
	if( document.getElementById( idTxtArea ).value == sTxtInputModelo )
	{
		document.getElementById( idTxtArea ).value = '';
	}
	return true;
}
