// JavaScript Document

if (screen.width < 1024) {
document.write('<link rel=stylesheet type="text/css" href="style/layout1024.css">');
}
if (screen.width >= 1024) {
document.write('<link rel=stylesheet type="text/css" href="style/layout1024.css">');
}
if (screen.width >= 1280) {
document.write('<link rel=stylesheet type="text/css" href="style/layout1280.css">');
}
/*
function checkflash(){

        // Determine if Flash is installed
	var hasReqestedVersion = DetectFlashVer(8, 0, 0);

        // Get placeholder
	var d = document.getElementById('movie_container');

        // Replace content if required
	if (!hasReqestedVersion) {
               d.innerHTML = "<img src=\"/images/no_flash.jpg\" />";
        }
}

// Check for Flash after page has loaded
window.onload = checkflash;
*/

