function redirectPage(url)
{
	//window.location = url;
	window.open(url);
}

function mostraItem(item)
{
	if (item.style.display == 'none')
	{
		item.style.display='';
	}
	else{
		item.style.display='none'
	}
}

//Abre popups no site
function openPopUp(url, wind, alt, larg, barR)
{
	open(url, wind, 'statusbar=0, menubar=0, scrolling=0, scrollbars=' + barR +', height=' + alt + ', width=' + larg);
}
