/**
 * @author maurogadaleta
 */
function resizecontent(){
	width = screen.width;
	height = screen.height;
	
	if(height == 600)
		height = 100;
	if(height == 1024)
		height = 450;
	else
		height = parseInt(height / 2.7);
	
	//alert(height);
	
	document.getElementById("text").style.maxHeight = height+"px";
}
