function getBrowserWidth(){
	if (window.innerWidth){
		return window.innerWidth;}	
	else if (document.documentElement && document.documentElement.clientWidth != 0){
		return document.documentElement.clientWidth;	}
	else if (document.body){return document.body.clientWidth;}		
		return 0;
}

var browserWidth = getBrowserWidth();

if (browserWidth > 960){
var css='/css/down-wide.css';
document.write('<link rel="stylesheet" type="text/css" href="'+ css +'">');
document.write('<!--[if lte IE 6]>'); 
document.write('<style type="text/css">');
document.write('a {height: 1em;}');
document.write('#pagewrapper{'); 
document.write('width:expression(parseInt(this.currentStyle.marginLeft)+parseInt(this.currentStyle.marginRight)-document.body.clientWidth>=-880?"880px":"auto");}'); 
document.write('</style> ');
document.write('<![endif]-->');
}
else {
document.write('<!--[if lte IE 6]>'); 
document.write('<style type="text/css">');
document.write('a {height: 1em;}');
document.write('#pagewrapper{'); 
document.write('width:expression(parseInt(this.currentStyle.marginLeft)+parseInt(this.currentStyle.marginRight)-document.body.clientWidth>=-745?"745px":"auto");}'); 
document.write('</style> ');
document.write('<![endif]-->');
}


