// JavaScript Document

function ResolutionCheck()
{
	var w = screen.width;
	var h = screen.height;
	
	if(h > 768)
	{
		location.replace("normal/index.html");
	}
	else
	{
		location.replace("small/index.html");
	}
}