Forum Moderators: open
example of detect users' resolution
<script language=javascript>
if(screen.width<1024 ¦¦ screen.height<768)
{
document.write("<font color=red>Your Screen resolution are smaller than 1024x768 pixel. Please change your resolution for better view.</font>");
document.write("<br><font color=red>Your current screen resolution: "+screen.width +"x"+screen.height+" pixel</font><br><br>");
}
</script>