//<![CDATA[
function LoadPubs()
{
	var pubs = new Array("habillage", "megaban", "carre", "skyscrapper");
	var width = new Array("", "728", "300", "160");
	var height = new Array("", "90", "250", "600");
	for(i = 0; i < 4; ++i)
	{
		if(i == 0)
		{
			document.getElementById(pubs[i]).style.backgroundImage = "url('habillage.jpg')";
		}
		else if(document.getElementById(pubs[i]))
			document.getElementById(pubs[i]).innerHTML = "<iframe src='pubs/pub"+i+".php' width='"+width[i]+"px' height='"+height[i]+"px' marginwidth='0' marginheight='0' scrolling='no' frameborder='0'></iframe>";
	}
}
//]]>