TigerMilk if i understood your question right you can simply follow this code:
<!-- THREE STEPS TO INSTALL RESOLUTION PAGE:
1. Paste the coding into the HEAD of your HTML document
2. Add the last code into the BODY of your HTML document
3. Be sure to update the resolution pages to ones on your site -->
<!-- STEP ONE: Copy this code into the BODY of your HTML document -->
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
function redirectPage() {
var url640x480 = "http://www.yoursite.com/640x480";
var url800x600 = "http://www.yoursite.com/800x600";
var url1024x768 = "http://www.yoursite.com/1024x768";
if ((screen.width == 640) && (screen.height == 480))
window.location.href= url640x480;
else if ((screen.width == 800) && (screen.height == 600))
window.location.href= url800x600;
else if ((screen.width == 1024) && (screen.height == 768))
window.location.href= url1024x768;
else window.location.href= url640x480;
}
// End -->
</script>
<!-- STEP TWO: Copy this code into the BODY of your HTML document -->
Tiger,
this looks like just what i am looking for, since i am working with sliced images, and they pull appart around 800px,
is there a noticable delay in page loading?
Can a viewer's resolution be detected at all times and quickly?
and finally, when i link to other pages within the site, which "version" of that page do i specify in hyperlink?
Thanks for any response
Bookmarks