// JavaScript Document
function setWidth() {

var width = window.innerWidth != null? window.innerWidth :
document.documentElement && document.documentElement.clientWidth ?
document.documentElement.clientWidth : document.body != null ?
document.body.clientWidth : null;

var margin = (width-870)/2;

if(navigator.appName == 'Microsoft Internet Explorer')
{
document.getElementById('content-right').style.width = (width-margin-370)+'px';
}
else
{
document.getElementById('content-right').style.width = (width-margin-380)+'px';
}
return true;
}
