function $(ob) {
	if(document.getElementById(ob))
		return document.getElementById(ob);
	else
		return null;
}

function autoConfirm(mes, url) {
	if(confirm(mes)) {
		document.location=url;
	}
}

function popwin(url, nom, params) {
	window.open(url, nom, params);
}