// JavaScript Document

function noscroll(){
	/************PARSRINT=Convirte a numérico. top.frames.lenght=indica o número total de frames=4*/
	if (parseInt(top.frames.length)==0)
	{top.location="http://www.vimianzo.es/html/todo.asp?frame=0";}
	
	if(window.screen.width>800)
		{
			document.body.scroll = "no";
			document.documentElement.style.overflow = 'hidden';
		}
	else
		{
			document.body.scroll = "yes";
			document.documentElement.style.overflow = 'visible';
		}
}



