
/*
Script by RoBorg
RoBorg@geniusbug.com
http://javascript.geniusbug.com | http://www.roborg.co.uk
Please do not remove or edit this message
Please link to this website if you use this script!
*/



switch(screen.width)
{
	case 640:  goToPage('800.htm'); break;
	case 720:  goToPage('800.htm'); break;
	case 800:  goToPage('800.htm'); break;
	case 848:  goToPage('800.htm'); break;
	case 1024: goToPage('1024.htm'); break;
	case 1152: goToPage('1024.htm'); break;
	case 1280: goToPage('1280.htm'); break;
	case 1600: goToPage('1600.htm'); break;
	default :  goToPage('1600.htm'); break;
}



function goToPage(url)
{
	window.location.replace(url);
}

