function carregaUrl(url,containerId){
	jQuery("#"+containerId).load(url);
}

function toggle(containerSelector){
	showing=jQuery(containerSelector).css("display");
}
function fyOpenFrame(url){	jQuery.colorbox({		href:url,		width:"720", 		height:"560",		iframe:true, 		onClosed:function(){			location.reload();		}	});}
function submitAjaxForm(formTarget,formId,containerId){
	dados=jQuery("#"+formId).serialize();
	
	jQuery.ajax({
		   type: "POST",
		   url: formTarget,
		   data: dados,
		   success: function(msg){
		     jQuery("#"+containerId).html(msg);
		   }
	});
}
