
var ScreenWidth;
var cText = '';

ScreenWidth = screen.availWidth;

// Scherm layout aanpassen op dat van het scherm
if (ScreenWidth >= 1024) {
	//self.location.href = 'testg.html'

	cText += '<!-- header 1024 -->'
	cText += '<link rel="stylesheet" type="text/css" href="http://www.tourdefrance.nl/styles/menug.css">'
	cText += '<link rel="stylesheet" type="text/css" href="http://www.tourdefrance.nl/styles/maing.css">'
} else {
	//self.location.href = 'testk.html'

	cText += '<!-- header 800 -->'
	cText += '<link rel="stylesheet" type="text/css" href="http://www.tourdefrance.nl/styles/menuk.css">'
	cText += '<link rel="stylesheet" type="text/css" href="http://www.tourdefrance.nl/styles/maink.css">'
}

document.write(cText)