
register event onExit(){ affWindow.close(); }

http://localhost/cgi-bin/searchAC?keyType=ACID&keyword=35116
	</head><body>
	</body></html>
	at the end so probably missing closHeader earlier
	(which may include the missing msg_js div)
	in init() try document.msg_js instead of getElem..

http://localhost/cgi-bin/searchAC
	by real	2 medias
	end ok but still missing msg_js div


	function checkWin(target,src){
		
		window.open(src,)
	}

function PopupCentrer(page,largeur,hauteur,options){
	// check compat in js str / int for comparison !
	if(screen.height < hauteur){
		var r=hauteur/screen.height
		hauteur=screen.height
		largeur=screen.width/r
	}
	if(screen.width < largeur){
		var r=hauteur/screen.height
		largeur=screen.width
		hauteur=screen.height/r
	}
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
};
var myWindow = window.open("", "MsgWindow", "width=200,height=100");
myWindow.document.write("<p>This is 'MsgWindow'. I am 200px wide and 100px tall!</p>");