function OuvrirPopUp(url,titre, hauteur, largeur) {
	window.open(url, titre, "toolbar=no, location=no, directories=no, status=yes, scrollbars=yes, resizable=no, copyhistory=no, width="+largeur+", height="+hauteur+", left=300, top=50");
}

function OpenLink(url,w,h) {

//	var winOpts = 'toolbar=0,location=0,directories=0,' + 'status=0,menubar=1,new scrollbars(scrollbars.VERTICAL),' + 'resizable=1,width='+w+',height='+h 
	var winOpts = 'toolbar=0,location=0,directories=0,'
 + 'status=0,menubar=1,scrollbars=yes,'
 + 'resizable=1,width='+w+',height='+h
	RemoteWin = window.open(url,'LinkWin',winOpts)

}
