// JavaScript Document

<!--
checkWidth = function() {
	var cW = 630, cH = 460;

	if (parseInt(navigator.appVersion)>3) {
	 if (navigator.appName=="Netscape") {
	  cW = window.innerWidth;
	 }
	 if (navigator.appName.indexOf("Microsoft")!=-1) {
	  cW = document.body.offsetWidth;
	 }
	}
	if (cW > 1024) {
		document.getElementById('cl1').style.width = '50px';
		document.getElementById('cl2').style.width = '50px';
	} else {
		document.getElementById('cl1').style.width = '5px';
		document.getElementById('cl2').style.width = '5px';
	}
	//this method is called here to adjust the positioning of page controls based on the window resize
	attchPageControl("pageControl_parent", "pageControl_child");
	
	//this method is called to resize the top slider navigation fit chennals within top navigation area.
	resizeTopNav();
        // layout portlets
        if (typeof on_resize == "function")
           on_resize();
}
// -->
