
/*
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('index3.html'); break;
	case 720: goToPage('index3.html'); break;
	case 800: goToPage('index3.html'); break;
	case 848: goToPage('index3.html'); break;
	case 1024: goToPage('index3.html'); break;
	case 1152: goToPage('index3.html'); break;
	case 1280: goToPage('index2.html'); break;
	case 1600: goToPage('index2.html'); break;
	default : goToPage('index2.html'); break;

}



function goToPage(url)
{
	window.location.replace(url);
	//alert('You would now be forwarded to ' + url);
}

