
switch(screen.width && screen.height)
{
	
	
	
	case 1024 && 768: goToPage('index1024.html'); break;

	case 1024 && 600: goToPage('index1024.html'); break;
	
	case 1152 && 864 : goToPage('index1150.html'); break;
	
	case 1280 && 720: goToPage('index1024.html'); break;
	
	case 1280 && 768: goToPage('index1150.html'); break;

	case 1280 && 800: goToPage('index1150.html'); break;
	
	case 1280 && 960: goToPage('index1280.html'); break;
	
	case 1280 && 1024: goToPage('index1280.html'); break;
	
	default : goToPage('index1024.html'); break;
}


function goToPage(url)
{
	window.location.replace(url);
	//alert('You would now be forwarded to ' + url);
}


