 
function setup()
{

if (document.all)
{
   el=document.body.style;
   el.scrollbarDarkShadowColor="#000000";
   //scrollbar3dLightColor="#87CEFA";
   el.scrollbarArrowColor="#185818";
   el.scrollbarBaseColor="#E8D8A8";
   //scrollbarFaceColor="#000020";
   el.scrollbarHighlightColor="#185818";
   el.scrollbarShadowColor="#666666";
   el.scrollbarTrackColor="#F8E8B8";
   
		Eid = 'pageWrapper';
		el = document.getElementById(Eid);
	   
	    winW = innerWidth;
        winH = innerHeight;

     (winW<800) ? el.style.left="0px" : el.style.left="50%";
	 (winW<800) ? el.style.marginLeft="0px" : el.style.marginLeft="-400px";
}
}

window.onresize= function () 
{
Eid = 'pageWrapper';
el = document.getElementById(Eid);

if(document.all)
{
        winW = innerWidth;
        winH = innerHeight;
     (winW<800) ? el.style.left="0px" : el.style.left="50%";
	 (winW<800) ? el.style.marginLeft="0px" : el.style.marginLeft="-400px";

}
} 


function doChange(theID, textglow)
{
el=document.getElementById(theID);
el.style.filter="progid:DXImageTransform.Microsoft.Glow(color="+textglow+", Strength='2')";
}



