$(document).ready(function()
{
    //-------------------------------------------------------
    /*shows the loading div every time we have an Ajax call*/
    $("#loading").bind("ajaxSend", function(){
           $(this).show();
     }).bind("ajaxComplete", function(){
           $(this).hide();
     });
     //-------------------------------------------------------
	 
	 $('div#help_content').hide();
}) 

function toggleHelp()
{
	$('div#help_content').slideToggle();
}

function loadUrl(id, url)
{
	$(id).load(url);
}

function toggleCheckboxes(name, t)
{
	var checked_status = t.checked;
	//alert(name);
	$("input[@id="+name+"]").each(function()
	{
		//alert(this.value);
		this.checked = checked_status;
	});	
}

function openPopup(url, name, width, height)
{
	var parametros = "width="+width+", height="+height+", resizable=no, toolbar=no, directories=no, location=no, scrollbar=no, status=no";
	window.open(url, name, parametros);
}