function OpenWindowNoResize(url,target,width,height,titre) {

	newwin =  window.open(url,target,'height='+height+',width='+width+',status=yes,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,titlebar=no');
	newwin.status = titre;
	newwin.title = titre;

}

function OpenWindowResize(url,target,width,height,titre) {

	newwin =  window.open(url,target,'height='+height+',width='+width+',status=yes,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes,titlebar=no');
	newwin.status = titre;
	newwin.title = titre;

}