
function FullScreen() {
	window.resizeTo( screen.width, screen.height ) ;
	window.moveTo( 0, 0 ) ;
}

function CheckDisplay( page ) {

	FullScreen() ;

	// How big are you?
	var width = screen.width ;
	var height = screen.height ;

	if ( 800 == width && 600 == height ) {
		document.location = "http://www.annamillerfood.co.uk/" + page + "_800x600.html" ;
	}

	return ;
}

function CheckDisplay800x600( page ) {

	FullScreen() ;

	// How big are you?
	var width = screen.width ;
	var height = screen.height ;

	if ( 1024 == width && 768 == height ) {
		document.location = "http://www.annamillerfood.co.uk/" + page + ".html" ;
	}

	return ;
}

