function fullWin(name,url){

	// IE PC
	if((navigator.appName == "Microsoft Internet Explorer") && (navigator.platform != "MacPPC"))
	{
		fenetre=window.open(url,name,'fullscreen=yes');
	}
	// safari mac
	
	else {
		height = screen.availHeight;
		width = screen.availWidth;
	
		try
		{
			tmp = window.open(url, null, "height=" + height + "px,width=" + width + "px,top=0,left=0,location=0,menubar=0,resizable=0,scrollbars=0,toolbar=0");
			tmp.resizeTo(width, height);
		} catch(e) {}
	}
}


function launchMini(launcher, path, ispop, coulfond, width, height){
	tellTarget = "target=\"_blank\"";
	if (ispop == "true"){
		path = "javascript:fullWin('pop1','" + path + "')";
		tellTarget = "";
	}
	launcher = launcher + "projet/integration/";
	document.write("<a " + tellTarget + " href=\"" + path +"\"><img src=\"" + launcher + "banner_145x80.gif\" alt=\"Cefic Review 2008-2009\" width=\"145\" height=\"80\" border=\"0\"/></a>");
}