// ---------------------------------------------------------------------------
// -- Check Screen Resolution --
// ---------------------------------------------------------------------------

switch(screen.width) {
	case 320: goToPage('smartphone/320.html'); break;
	case 240: goToPage('smartphone/240.html'); break;
}

// ---------------------------------------------------------------------------
// -- Redirect --
// ---------------------------------------------------------------------------

function goToPage(url) {
	window.location.replace(url);
	alert('You would now be forwarded to ' + url);
}

