

$(document).ready(function() {


	$('#acceso_libreta').dialog({
		autoOpen: false,
		bgiframe: true,
		width: 500,
		height: 250,
		modal: true
		
	});

});


function acceso_libreta(tipo_cuenta){


	$('#acceso_libreta').load('/micuenta/acceso_libreta/'+tipo_cuenta,function(){
		var title = 'Invita a tus amigos';
		$('#acceso_libreta').dialog('option', 'title', title);
		$('#acceso_libreta').dialog('open');
	});
	//setter


}

function toggleAll(element)
{
	var form = document.forms.form_invita, z = 0;
	for(z=0; z<form.length;z++)
	{
		if(form[z].type == 'checkbox')
		form[z].checked = element.checked;
	}
}


