var screenW = screen.width;
if (screenW < 1280) {
	goToPage('default1024x768.htm'); 
}
else if (screenW >= 1280) {
	goToPage('default1280x1024.htm');
}
else {
	goToPage('default1024x768.htm');
}

function goToPage(url) {
	window.location.href=url;
}


