
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,'#5E1100');
	obj.onmouseout="ChangeColor("+obj+",'#5E1100');";
}





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_panel.htm');
}

function loadincludes1(){
	clientSideInclude('topinc1', '../includes/top_panel.htm');
}

function loadincludes4(){
	clientSideInclude('topinc_admin', '../includes/top_panel_admin.htm');
}

function loadincludes2(){
	clientSideInclude('topinc1', '../../../includes/top_panel_portfolio.htm');
}
function loadincludes3(){
	clientSideInclude('topinc3', '../../../includes/sub_panel_portfolio.htm');
}