// JavaScript Document

function detectRes(){
	if(screen.height <= 750){
		window.location = "index600.html";	
	}else if(screen.height <= 900){
		window.location = "index800.html";
	}
	return;
}