CreerObj("bulle",0,0,100,10,0,0,"","",0);
CreerObj("bulleimg",0,0,100,10,0,0,"","",0);
//var v;
function bulle(nom,ptx,pty)
{	
	if (document.all.item("bulle").style.visibility=="visible")
	{
		CacherObj("bulle");
	}

	if (document.all.item("bulle").style.visibility=="hidden")
	{
		if (nom!="")
		{
			if(ptx==""){var cx=SourisX()-100;}
			else{var cx=SourisX()-ptx;}
			if(pty==""){var cy=SourisY();}
			else{var cy=SourisY()-pty;}	
      	   //if(v!=1){
      	      PlacerObj("bulle",cx,cy);
      	      ModifierObj("bulle","<div id='tutu' style='z-index:10'><table width='100' cellpadding='0' cellspacing='0' border='1' bordercolor='#000000'><tr align='center'><td bgcolor='#FFFFFF'><font color='#000000'>"+nom+"</font></td></tr></table></div>");
      	      VoirObj('bulle');
			  v=1;
		  // }
		}
	}
	else
	{
		if (nom=="")
		{
			CacherObj("bulle");
			v=0;
		}
	}
}


function bulleimg(nom,ptx,pty)
{	
	if (document.getElementById("bulleimg").style.visibility=="visible")
	{
		CacherObj("bulleimg");
	}

	if (document.getElementById("bulleimg").style.visibility=="hidden")
	{
		if (nom!="")
		{
			if(ptx==""){var cx=SourisX();}
			else{var cx=SourisX()-ptx;}
			if(pty==""){var cy=SourisY()-200;}
			else{var cy=SourisY()-pty;}	
      	   //if(v!=1){
      	      PlacerObj("bulleimg",cx,cy);
      	      ModifierObj("bulleimg","<div id='tutu2' style='z-index:10'><table width='100' cellpadding='0' cellspacing='0' border='1' bordercolor='#000000'><tr align='center'><td bgcolor='#FFFFFF'><img src='./images/photos/"+nom+"' alt='' name='MiniPic' class='picsdata'></td></tr></table></div>");
      	      VoirObj('bulleimg');
			  v=1;
		  // }
		}
	}
	else
	{
		if (nom=="")
		{
			CacherObj("bulleimg");
			v=0;
		}
	}
}
