// <script type="text/javascript" src="embrouilleur.js"></script>
// embrouilleur :
// var embrouille=new EmbrouillObject("main","flog.php?id=<?php echo $login; ?>","#FFFFFF");
// embrouille.doIt();

var EmbrouillObject = function(id,url,bgcolor)
{
	this.id=id;
	this.url=url;
	this.bgcolor=bgcolor;
}
var EOP=EmbrouillObject.prototype;
EOP.doIt=function ()
{
	document.getElementById(this.id).innerHTML="<IFRAME SRC='"+this.url+"' style='background-color: "+this.bgcolor+"' width=100% height=100% scrolling='no' frameborder='0' />";
}
EOP.submitForm=function()
{
	document.getElementById(this.id).submit();
}
EOP.tagStat=function ($page,$group)
{
	_estat('496096202644',$page,$group);
}
