//Ouvre une fenêtre statique
function Ouvre_radio(theURL,winNom,x,y)
{
	 larg=x;
	 haut=y;
	  window.open(theURL,winNom,'width=' + larg + ',height=' + haut + ',left=0,top=0,scrollbars=0,resizable=0');
		//resize(screen.width-10,screen.height-30);
}

function Ouvre_fen(theURL,winNom,x,y)
{
	 larg=x;
	 haut=y;
	  window.open(theURL,winNom,'width=' + larg + ',height=' + haut + ',left=0,top=0,scrollbars=1,resizable=1');
		//resize(screen.width-10,screen.height-30);
}

function include(url) 
{ 
	if ( document.all ) 
	{ 
		var xml = new ActiveXObject("Microsoft.XMLHTTP"); 
		xml.Open( "GET", url, false ); 
		xml.Send() 
		document.writeln(xml.responseText); 
	} 
	else 
	{ 
		if ((location.host=='' && url.indexOf(location.protocol)==-1) || url.indexOf(location.host)==-1) 
		{ 
			netscape.security.PrivilegeManager.enablePrivilege("UniversalConnect"); 
		} 
		
		var dest = new java.net.URL(url); 
		var dis = new java.io.DataInputStream(dest.openStream()); 
		var res = ""; 
		while ((line = dis.readLine()) != null) 
		{ 
			res += line + java.lang.System.getProperty("line.separator"); 
		} 
		dis.close(); 
		document.writeln(res); 
		return res; 
	} 
} 

