///used by counsel program only
function go(theURL) {   
document.location.href=theURL;
} 
////
function navBar( tableCellRef, hoverFlag, navStyle ,bgcolor ) {   

	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = bgcolor;
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#c00';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = bgcolor;
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';
				}
		}
	}
}

function ShowHideFrontpagelements() 
		{
			var OldStyle = tblFrontpagelements.style.display;
			
			if (OldStyle == "") 
			{
				tblFrontpagelements.style.display = "none";
				document.getElementById('imgfrontpgelement').src = "template/Front-End/images/icons/fromnews-expand.gif";
			}
			else
			{
				tblFrontpagelements.style.display = "";
				document.getElementById('imgfrontpgelement').src = "template/Front-End/images/icons/fromnews-collapse.gif";
			}
			return false;
		}


function chg_formaction() {
         var section_id;  
       
	section_id=document.srch_form.sectionid.options[document.srch_form.sectionid.selectedIndex].value;
        
        if(document.srch_form.searchword.value=="") 
        {
        	alert('ارجو اختيار كلمة البحث');
        	return false;	
        }
        	
       
        
	if(section_id==1 || section_id==-1)
		document.srch_form.action='index.php'; 
	else if(section_id==2)
		document.srch_form.action='index-counsels.php'; 
	else if(section_id==3)
		document.srch_form.action='index-babies.php';  
	else	
		document.srch_form.action='index.php'; 
	 			
	}
	 	
function go_searchadv() {
        
         
	 section_id=document.srch_form.sectionid.options[document.srch_form.sectionid.selectedIndex].value;
	 
	 if(section_id==-1)
	    window.location.href='index.php?option=content&section=search&task=srchadv_gnrl';
	 else if(section_id==1)
	    window.location.href='index.php?option=content&section=search&task=srchadv&sectionid=1';
	 else if(section_id==2)
	    window.location.href='index-counsels.php?option=content&section=search&task=srchadv&sectionid=2'; 
	 else if(section_id==3)
	    window.location.href='index-babies.php?option=content&section=search&task=srchadv&sectionid=3';  
	 else
	    window.location.href='index.php?option=content&section=search&task=srchadv&sectionid=1';    
}