$(function(){

	modal = new ModalElement();

	//popup permisos GMAIL
	$('.showGmail').click(function(){
		window.open( "/tvh/popupGmail.html", "Iniciar_sesion", "toolbar=0,location=0,scrollbars=1,directories=0,status=0,menubar=0,resizable=1,width=470,height=270,left="+(screen.width-900)/2+",top="+(screen.height-600)/2 );
	});

	$("#formContactos").css("display","none");

	$("#formContactos img.form_cerrar").click( function(){
		$('#getGmail input').val('');
		$('#getGmail .info p').html('');
		modal.hide();
	});

	return false;
});

function listacontactosGMAIL(xml){
	modal.showElement("#formContactos");
	parseContactsXml(xml);
}

function ocurrioerror(){
	modal.showElement("#error");
}
