﻿screenCheck();
return true;

function screenCheck()
{
	var w=$(window).width();
	var risp=false;
	if(w<1024)
	{
		window.location.replace("about:blank");
		window.location.replace("http://mobile.galleriamucciaccia.it");
		document.stop();
		risp=true;
	}
	return risp;
}

