// JavaScript Document
//Popups
function ouvrir_fenetre(url, width, height) {
	newwindow=window.open(url,'name','height='+height+',width='+width+',toolbar=0,menubar=0,location=0,scrollbars=0');
	if (window.focus) {newwindow.focus()}
	return false;
}