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(){
	if(document.getElementById('topinc')) clientSideInclude('topinc', '../includes/top_bar.htm');
	if(document.getElementById('leftinc')) clientSideInclude('leftinc', '../includes/left_panel.htm');
	if(document.getElementById('rightinc')) clientSideInclude('rightinc', '../includes/right_panel.htm');
	if(document.getElementById('bottominc')) clientSideInclude('bottominc', '../includes/bottom_bar.htm');
}

function winopenInner()
{
	var NewWin;
	NewWin1=window.open("form.htm",'NewWin2','height=595,width=420,top=50,left=50,location=no,status=no,toolbar=no,menubar=no,scrollbars=no');
	NewWin1.focus();

}