function mOvr(src,clrOver){ 
	if (!src.contains(event.fromElement)){ 
		src.style.cursor = 'default'; 
		src.bgcolor = clrOver; 
	} 
} 

function mOut(src,clrIn){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		src.bgcolor = clrIn; 
	} 
}

function ChangeColor(obj,color){
	obj.style.background=color;
}

function markmenu(obj){
	ChangeColor(obj,'#92AB45');
	obj.onmouseout="ChangeColor("+obj+",'#92AB45');";
}




function show(line,div){
	line.style.display='';
	div.style.visibility='visible';
}

function hide(line,div){
	line.style.display='none';
	div.style.visibility='hidden';
}

function loadincludes(){	
	clientSideInclude('topinc', '../includes/top_bar_advance.htm');
}

function loadincludes1(){
	if(document.getElementById('topinc1')) clientSideInclude('topinc1', '../includes/top_bar.htm');
        if(document.getElementById('topinc7')) clientSideInclude('topinc7', '../includes/left_panel.htm');
        if(document.getElementById('topinc6')) clientSideInclude('topinc6', '../includes/left_panel_admin.htm');
	if(document.getElementById('topinc2')) clientSideInclude('topinc2', '../includes/top_bar1.htm');
         if(document.getElementById('topinc3')) clientSideInclude('topinc3', '../includes/bottom_bar.htm'); 
         if(document.getElementById('topinc4')) clientSideInclude('topinc4', '../includes/left_panel3.htm');                
         if(document.getElementById('topinc5')) clientSideInclude('topinc5', '../includes/left_panel4.htm');
           if(document.getElementById('topinc9')) clientSideInclude('topinc9', '../includes/top_bar_admin.htm');


}

function applicationFrm()
{

	var NewWin3;
	NewWin3=window.open("applicationForm.htm",'NewWin3','width=600,top=10,left=150,location=no,status=no,toolbar=no,menubar=no,scrollbars=yes');
	NewWin3.focus();
}


