// JavaScript Document

function popup(url) {
	newwindow=window.open(url,'name','height=400,width=450,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

function popup2(url, hauteur, largeur) {
	newwindow=window.open(url,'name2','height='+ hauteur +',width='+ largeur +',scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}


