/*
Script by RoBorg
RoBorg@geniusbug.com
http://javascript.geniusbug.com
Please do not remove or edit this message
*/


switch(screen.width)
{
	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('index3.html'); break;
	case 1600: goToPage('index3.html'); break;
	default : goToPage('index3.html'); break;
}


function goToPage(url)
{
	document.location.replace(url);
}



