<SCRIPT LANGUAGE="JavaScript">
var url640x480 = "Your regulation is 640x480";
var url800x600 = "Your regulation is 800x600";
var url1024x768 = "Your regulation is 1024x768";
if ((screen.width == 640) && (screen.height == 480))
alert(url640x480);
else if ((screen.width == 800) && (screen.height == 600))
alert(url800x600);
else if ((screen.width == 1024) && (screen.height == 768))
alert(url1024x768);
else alert(url640x480);
</script>