function show_form(int_org){
	//abre el formulario de logueo
	str_url='./app/entrance/default.cfm?int_OrganizationId='+int_org+'&str_origin=orgs';
	open_window(str_url,'qs_canalgv',true,350,200,2000,2000,false,0,0,0,1,0,0,false);		
}
function show_autoregistry(int_org){
	//abre el formulario de autoregistro
	str_url='./app/entrance/default.cfm?int_OrganizationId='+int_org+'&fuseaction=log_autoregistry';
	open_window(str_url,'qs_autoregistry',true,750,550,0,0,false,0,0,0,1,1,0,false);		
}
$("div.organizaciones").hover(
	function () {
		$(this).removeClass("organizaciones").addClass("organizaciones_destaca");
	}, 
	function () {
		$(this).removeClass("organizaciones_destaca").addClass("organizaciones");
	}
);