function AbreJanela(link,x,y,s) {
	var t = (screen.height - y) / 2;
	var e = (screen.width - x) / 2;

	window.open(link,x+y,'width=' + x + ',height=' + y + ',scrollbars=' + s + ',toolbar=0,location=0,status=0,menubar=0,resizable=0,left=' + e + ',top=' + t + '');
}

function ShowHide(IdObjeto){
	$("#"+IdObjeto).slideToggle(400);
}
function Show(IdObjeto){
	$("#"+IdObjeto).show();
}
function Hide(IdObjeto){
	$("#"+IdObjeto).hide();
}

function goURL(URL){
	location.href = URL;
}