var flag = false;
function ImgLoad() 
{
    if (document.images) 
	{
	
		News_on = new Image(); News_on.src = WebSite+"/img/WT/bullet_news_on.gif";
		Contact_on = new Image(); Contact_on.src = WebSite+"/img/WT/bullet_contact_on.gif";
		Link_on = new Image(); Link_on.src = WebSite+"/img/WT/bullet_link_on.gif";
		SiteMap_on = new Image(); SiteMap_on.src = WebSite+"/img/WT/bullet_sitemap_on.gif";
	
		if (P_ID == 1)
		{			
			Img_Home_on = new Image(); Img_Home_on.src = WebSite+"/img/WT/Img_Home_on.gif";
			Img_Search_on = new Image(); Img_Search_on.src = WebSite+"/img/WT/Img_Search_on.gif";
			Img_Propose_on = new Image(); Img_Propose_on.src = WebSite+"/img/WT/Img_Propose_on.gif";
			Img_Carnet_on = new Image(); Img_Carnet_on.src = WebSite+"/img/WT/Img_Carnet_on.gif";
			Img_Conditions_on = new Image(); Img_Conditions_on.src = WebSite+"/img/WT/Img_Conditions_on.gif";
		}
		else
		{	
			Img_Home_on = new Image(); Img_Home_on.src = WebSite+"/img/WT/Img_Home_en_on.gif";
			Img_Search_on = new Image(); Img_Search_on.src = WebSite+"/img/WT/Img_Search_en_on.gif";
			Img_Carnet_on = new Image(); Img_Carnet_on.src = WebSite+"/img/WT/Img_Carnet_en_on.gif";
			Img_Conditions_on = new Image(); Img_Conditions_on.src = WebSite+"/img/WT/Img_Conditions_en_on.gif";
		
		}
        return (flag = true);  // set the flag and let the function know know it can work
    }
}

	if (document.images) 
	{
		News_off = new Image(); News_off.src = WebSite+"/img/WT/bullet_news_off.gif";
		Contact_off = new Image(); Contact_off.src = WebSite+"/img/WT/bullet_contact_off.gif";
		Link_off = new Image(); Link_off.src = WebSite+"/img/WT/bullet_link_off.gif";
		SiteMap_off = new Image(); SiteMap_off.src = WebSite+"./img/WT/bullet_sitemap_off.gif";
		if (P_ID == 1)
		{			
			Img_Home_off = new Image(); Img_Home_off.src = WebSite+"/img/WT/Img_Home_off.gif";
			Img_Search_off = new Image(); Img_Search_off.src = WebSite+"/img/WT/Img_Search_off.gif";
			Img_Propose_off = new Image(); Img_Propose_off.src = WebSite+"/img/WT/Img_Propose_off.gif";
			Img_Carnet_off = new Image(); Img_Carnet_off.src = WebSite+"/img/WT/Img_Carnet_off.gif";
			Img_Conditions_off = new Image(); Img_Conditions_off.src = WebSite+"/img/WT/Img_Conditions_off.gif";
		}
		else
		{
			Img_Home_off = new Image(); Img_Home_off.src = WebSite+"/img/WT/Img_Home_en_off.gif";
			Img_Search_off = new Image(); Img_Search_off.src = WebSite+"/img/WT/Img_Search_en_off.gif";
			Img_Carnet_off = new Image(); Img_Carnet_off.src = WebSite+"/img/WT/Img_Carnet_en_off.gif";
			Img_Conditions_off = new Image(); Img_Conditions_off.src = WebSite+"/img/WT/Img_Conditions_en_off.gif";
		}
	}

function rollIn(imgName) 
{
    if (document.images && (flag == true)) 
		document[imgName].src = eval(imgName + "_on.src");
}
function rollOut(imgName) 
{
    if (document.images)
		document[imgName].src = eval(imgName + "_off.src");
}
function ListFind(item) 
{
	var List = location.pathname;
	List = List.split('/');
	var CharFound = false;
	for (j = 0;  j < List.length;  j++)
	{
		if (item == List[j])
		{
		    CharFound = true;
			break;
		}
	}
  return CharFound;
}
function noframe() {
	if (top.frames.length!=0)
	{
		if (top.frames[0].name != 'textedit' && (!(ListFind("Chat") || ListFind("chat"))))
			top.location=self.document.location; 
	}
}
