var newWindow;

function highlightMenuItem(mi, mode) {
	mode ? mi.style.backgroundColor = "#CCCCCC" : mi.style.backgroundColor = "#FFFFFF";
}
function popup(url) {
	newWindow=window.open(url,'agremente','height=600,width=670,left=0,top=0,resizable=yes,scrollbars=yes,menubar=yes,toolbar=no,status=no');
	if (window.focus) {newWindow.focus()}
}