// JavaScript Document
function setWidth() 
{
var width = window.availWidth != null? window.availWidth :
document.documentElement && document.documentElement.clientWidth ?
document.documentElement.clientWidth : document.body != null ?
document.body.clientWidth : null;

if(navigator.appName == 'Microsoft Internet Explorer')
{
	document.getElementById('side-a').style.width = (width-832)/2+"px";
	document.getElementById('side-b').style.width = (width-832)/2+"px";
}
else
{
	document.getElementById('side-a').style.width = (width-832)/2+"px";
	document.getElementById('side-b').style.width = (width-832)/2+"px";
}
return true;
}
