function show_inter_pub()
{
   if(document.getElementById && get_cookie_value("PHPSESSID")!=0 && get_cookie_value("info_inter")==0)
    {
		document.getElementById("inter_pub").style.width = "100%";
		document.getElementById("inter_pub").style.height = "100%";
		document.getElementById("inter_pub").style.backgroundColor="#000000";
		document.getElementById("inter_pub").innerHTML = html_haut+html_mil+html_bas;
		setTimeout("close_inter_pub()",10000);
		// Création du cookie
		var dateExp = new Date();
	    dateExp.setTime(dateExp.getTime() + 24 * 3600 * 1000);
	    dateExp = dateExp.toGMTString();
		document.cookie = 'info_inter=' + escape("ok") + '; path=/; expires=' + dateExp + ';';
    }
}

function close_inter_pub()
{
   if(document.getElementById)
    {
      document.getElementById("inter_pub").style.width = 0;
      document.getElementById("inter_pub").style.height = 0;
      document.getElementById("inter_pub").innerHTML = '';
    }
}

function get_cookie_value(variable)
{
	variable += "=";
	var cook = document.cookie;
	var place = cook.indexOf(variable,0);
	if (place <= -1){
	  return("0");
	} else{
	  end = cook.indexOf(";",place)
	  if (end <= -1)
	     return(unescape(cook.substring(place+variable.length,cook.length)));
	  else
	     return(unescape(cook.substring(place+variable.length,end)));
	}
}

if(document.all)
{
   larg_total = document.body.clientWidth;
   haut_total = document.body.clientHeight;
}else if(window.innerWidth){
   larg_total = window.innerWidth-18;
   haut_total = window.innerHeight;
}else{
   larg_total = screen.width-18;
   haut_total = screen.height;
}

//larg=Math.round(larg_total/2);
//haut=Math.round(haut_total/2);
larg=800;
haut=500;

html_haut = "<table border=\"0\" width=\"100%\" style=\"position:absolute;left:"+Math.max(0,Math.round((larg_total-larg)/2))+"px;top:"+Math.max(0,Math.round((haut_total-haut)/2-25))+"px;width:"+larg+"px;height:"+(haut+50)+"px; background-color:#FFFFFF; border:3px solid #FFFFFF;\">	<tr><td align=\"right\" height=\"25\" valign=\"middle\"><a href=\"javascript:close_inter_pub();\"><img src=\"/images/bt_fermer.gif\" /></a></td></tr>	<tr><td align=\"center\" height=\""+haut+"\" valign=\"middle\">";
html_bas = "</a></td></tr>	<tr><td align=\"center\" height=\"25\" valign=\"middle\"><a href=\"javascript:close_inter_pub();\">Fermer ce cadre pour consulter directement le site le-teck.fr</a></td></tr></table>";

window.onload = show_inter_pub;
