function HideContent(d) 
{
	document.getElementById(d).style.display = "none";
}
function ShowContent(d) 
{
	document.getElementById(d).style.display = "";
}
function ReverseContentDisplay(d)
{
	if(document.getElementById(d).style.display == "none") 
	{ 
		document.getElementById(d).style.display = "";
	}
	else 
	{ 
		document.getElementById(d).style.display = "none"; 
	}
}
if (screen.width == 640) 
{
	alert("Resolução Mínima 1024 x 768 pixels");
}
if (screen.width == 800) 
{
	alert("Resolução Mínima 1024 x 768 pixels");
}
