function addToFavorites(anchor)
{ 
/*
if (window.external)
{
window.external.AddFavorite(anchor.getAttribute('href'), anchor.getAttribute('title'));
}
*/
if (window.sidebar) { // Mozilla Firefox Bookmark
	window.sidebar.addPanel(anchor.getAttribute('title'), anchor.getAttribute('href'),"");
} else if( window.external ) { // IE Favorite
	window.external.AddFavorite( anchor.getAttribute('href'), anchor.getAttribute('title')); 
	}
}


function verif_enter()
{ if (window.event.keyCode==13)
	{monform.submit()}
}

function openPopup(URL, id, width, height) {
	window.open(URL, id, "toolbar=no,location=no,width="+width+",height="+height+",status=yes,scrollbars=yes,scrolling=yes,menubar=no,resizable=yes");
}

