/*This Script redirects to resolution specific pages
*/

function redirectPage(type)
{
var url640x480 = type + "640x480.html";
var url800x600 = type + "800x600.html";
var url1024x768 = type + "1024x768.html";
var url1280x1024 = type + "1280x1024.html";

var test = type+"hello";

if (test!='menuhello')
{
if ((screen.width >= 1260)) 
  location.href= url1280x1024;
else if ((screen.width >= 1004))
  location.href= url1024x768;
else if ((screen.width >= 790))
  location.href= url800x600;
else location.href= url640x480;
}
else
{
if ((screen.width >= 1260)) 
  top.location.href= url1280x1024;
else if ((screen.width >= 1004))
  top.location.href= url1024x768;
else if ((screen.width >= 790))
  top.location.href= url800x600;
else top.location.href= url640x480;
};


}



// function pasuser(form) 
// {
// location="indexTEST.html" 
// }


