function redirectPage() {
var url800x600 = "http://www.orleansmagic.com/temp/photo3_01.html";
var url1024x768 = "#";
var url1280x1024 = "http://www.orleansmagic.com/temp/photo3_02.html";
if ((screen.width == 800) && (screen.height == 600)) 
window.location.href= url800x600;
else if ((screen.width == 1280) && (screen.height == 1024))
window.location.href= url1280x1024;
else window.location.href= url1024x768;
}
