/* Redireciona de acordo com a resolução (Por Lucas Barbosa Lacerda) */ //para resolução 800x600 if (screen.width==800||screen.height==600) window.location.replace("800600/index.php") //para resolução 640x480 else if (screen.width==640||screen.height==480) window.location.replace("640480/index.php") //para resolução 1024x768 else if (screen.width==1024||screen.height==768) window.location.replace("1240768/index.php") //para outras resoluções else window.location.replace("1240768/index.php ")