IFrame = function( id , adresse , width , height )
{
	if (height=='' || height>650 || height=='100%')
		height=600;
	
	if (width=='' || width>795 || width=='100%')
		width=795;
		
	this.me=$("<div/>");
	var moi=this.me;
	this.me.css("width" , width);
	
	
	
	this.me.height(height);
	
	this.content=$('<div/>');
	this.content.addClass("iFrame");
	this.content.addClass("element");
	
	

	
	
	var contenu=$('<iframe/>');
	contenu.attr('frameborder' , '0');
	contenu.attr('width' , width);
	contenu.attr('height' , height);
	contenu.attr('scrolling' , 'auto');
	contenu.attr('src' , adresse+'?langue='+ModeleInteraction.getLangue());
	contenu.attr('id' , 'iframe'+id)
	
	
	
	this.content.append(contenu);
	
	this.me.append(this.content)
	
	
	
	ModeleGraphique.allowDrag(this.me);
	

	
}