// Script to load alternative style sheet if the window is too short to show the full sidebar
var WindowHeight = 0;
if (window.innerWidth) //if browser supports window.innerWidth
	{ WindowHeight = window.innerHeight; }
else if (document.all) //else if browser supports document.all (IE 4+)	
	{ WindowHeight = document.body.clientHeight; }
if ((WindowHeight) < 480) {
document.write('<link rel="stylesheet" type="text/css" href="/css/ShortWindow.css">');
} 