function Desplegar (zonaid)
{
	var div_id = 'zona_'+zonaid;

	if (document.getElementById(div_id).style.display == "inline")
	{
		document.getElementById(div_id).style.display = "none";
	}
	else
	{
		document.getElementById(div_id).style.display = "inline";
	}
}

function OpenWindow(url, id, width, height)
{
	window.open(url, id, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width='+width+',height='+height+'');
}

function ContarChars (textarea, maximo, idcuenta)
{
	if (textarea.value.length >= maximo) 
	{
		textarea.value = textarea.value.substr(0,maximo);
	}
	
	if (idcuenta)
	{
		document.getElementById(idcuenta).innerHTML = maximo-textarea.value.length;
	}
}

function go_top()
{
	scrollTo(0,0);
} 
