<!--
function dowindowresize() {
    if(document.documentElement.clientWidth<1000){
       $j("div.fBanner").css("display","none")
       //alert("aa")
    }
    else
    {
       $j("div.fBanner").css("display","block")
       //alert("b")
    }
}

 $j(document).ready(function(){ dowindowresize()});

function selectSection()
{
	//alert( document.searchForm.searchIn.value);
	var section
	section=document.searchForm.searchIn.value;
	document.searchForm.q.value=document.searchForm.questionstring.value;
	document.searchForm.action=section;
		
}
 //-->