//v1.0
//Copyright 2006 Usvp Brasil, Inc. All rights reserved.

function Escolhe() 
{
        w = screen.width;
        if(w == 800) location.href = "index800.html";
		else if(w == 1024) location.href = "index1000.html";
		else if(w > 1024) location.href = "index1600.html";
}



