<!--
function setPointer(theRow, thePointerColor, theFontColor)
{
    if (thePointerColor == '' || typeof(theRow.style) == 'undefined') {
        return false;
    }
    if (typeof(document.getElementsByTagName) != 'undefined') {
        var theCells = theRow.getElementsByTagName('td');
    }
    else if (typeof(theRow.cells) != 'undefined') {
        var theCells = theRow.cells;
    }
    else {
        return false;
    }

    var rowCellsCnt  = theCells.length;
    for (var c = 0; c < rowCellsCnt; c++) {
        theCells[c].style.backgroundColor = thePointerColor;
        theCells[c].style.color = theFontColor;
    }

    return true;
} // end of the 'setPointer()' function

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function WWidth() {
			if (window.innerWidth){ return window.innerWidth-15; 
			}else if (document.body && document.body.offsetWidth){ return document.body.offsetWidth-35;}
}
function set_col()
{
 var width=WWidth();
  l_col=document.getElementById('menu_left');
	if (l_col){
			if (width<900) {l_col.style.top='42px';	l_col.style.borderRight='1px solid #ffffff';} /*42px*/
			else  { l_col.style.top='161px';  }	
			
  }
  c_col=document.getElementById('center');
	if (c_col){	
		if (width<900) {
			c_col.style.right='0px'; 
		}else { 
			c_col.style.right='180px';
		}
	}
  t1_col=document.getElementById('logo');
	if (t1_col){	
		if (width<900) {
			t1_col.style.left='180px'; 
		}else { 
			t1_col.style.left='40px'; 
		}
	}
  r_col=document.getElementById('news_right');
	if (r_col){	
		if (width<900) {r_col.style.display='none'; }else { r_col.style.display='block';}
  }	
}
window.onload=set_col;
window.onresize=set_col;
window.onresize=set_col;
  

function changeSize(){
	div_size=document.getElementById('div_size');
	if(div_size){
		div_size.className='fSize4';
	}
}	
//-->
