
/*
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!
*/

if (screen.width <= 1024) 
goToPage('index800.htm');
else
goToPage('index1024.htm');

function goToPage(url)
{
	window.location.replace(url);
	//alert('You would now be forwarded to ' + url);
}


