

function addBookmark(title,url) {
	if (window.sidebar) { 
		window.sidebar.addPanel(title, url,""); 
	} else if( document.all ) {
		window.external.AddFavorite( url, title);
	} else if( window.opera && window.print ) {
	return true;
	}
}

function SubmitForm(id) {
	document.getElementById(id).submit();
}

function SubmitItem(id) {
	document.getElementById(id).submit();
}

function SelectColor(id) {
	document.getElementById(id).className = 'active';
}
function ReturnColor(id) {
	document.getElementById(id).className = '';
}
