function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
function P7_Snap() { //v2.63 by PVII
 var x,y,ox,bx,oy,p,tx,a,b,k,d,da,e,el,tw,q0,xx,yy,w1,pa='px',args=P7_Snap.arguments;a=parseInt(a);
 if(document.layers||window.opera){pa='';}for(k=0;k<(args.length);k+=4){
 if((g=MM_findObj(args[k]))!=null){if((el=MM_findObj(args[k+1]))!=null){
 a=parseInt(args[k+2]);b=parseInt(args[k+3]);x=0;y=0;ox=0;oy=0;p="";tx=1;
 da="document.all['"+args[k]+"']";if(document.getElementById){
 d="document.getElementsByName('"+args[k]+"')[0]";if(!eval(d)){
 d="document.getElementById('"+args[k]+"')";if(!eval(d)){d=da;}}
 }else if(document.all){d=da;}if(document.all||document.getElementById){while(tx==1){
 p+=".offsetParent";if(eval(d+p)){x+=parseInt(eval(d+p+".offsetLeft"));y+=parseInt(eval(d+p+".offsetTop"));
 }else{tx=0;}}ox=parseInt(g.offsetLeft);oy=parseInt(g.offsetTop);tw=x+ox+y+oy;
 if(tw==0||(navigator.appVersion.indexOf("MSIE 4")>-1&&navigator.appVersion.indexOf("Mac")>-1)){
  ox=0;oy=0;if(g.style.left){x=parseInt(g.style.left);y=parseInt(g.style.top);}else{
  w1=parseInt(el.style.width);bx=(a<0)?-5-w1:-10;a=(Math.abs(a)<1000)?0:a;b=(Math.abs(b)<1000)?0:b;
  x=document.body.scrollLeft+event.clientX+bx;y=document.body.scrollTop+event.clientY;}}
 }else if(document.layers){x=g.x;y=g.y;q0=document.layers,dd="";for(var s=0;s<q0.length;s++){
  dd='document.'+q0[s].name;if(eval(dd+'.document.'+args[k])){x+=eval(dd+'.left');y+=eval(dd+'.top');
  break;}}}e=(document.layers)?el:el.style;xx=parseInt(x+ox+a),yy=parseInt(y+oy+b);
 if(navigator.appVersion.indexOf("MSIE 5")>-1 && navigator.appVersion.indexOf("Mac")>-1){
  xx+=parseInt(document.body.leftMargin);yy+=parseInt(document.body.topMargin);}
 e.left=xx+pa;e.top=yy+pa;}}}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function flevDivPositionValue(sDiv, sProperty) { // v2.1, Marja Ribbers-de Vroed, FlevOOware
	this.opera = (window.opera); // Opera 5+
	this.ns4 = (document.layers); // Netscape 4.x
	this.ns6 = (document.getElementById && !document.all && !this.opera); // Netscape 6+
	this.ie = (document.all);  // Internet Explorer 4+
    var sValue = ""; docObj = eval("MM_findObj('" + sDiv + "')"); if (docObj == null) {return 0;}
	if ((sProperty == "left") || (sProperty == "top")) {
		if (!this.ns4) {docObj = docObj.style;} 
		sValue = eval("docObj." + sProperty);
		if ((this.ie) && (sValue == "")) { // IE (on PC) bug with nested layers
			if (sProperty == "top") { sValue = eval(sDiv + ".offsetTop"); } 
			else { sValue = eval(sDiv + ".offsetLeft"); } 
		};
	}
	else {
		if (this.opera) {
			docObj = docObj.style;
			if (sProperty == "height") { sValue = docObj.pixelHeight; } 
			else if (sProperty == "width") { sValue = docObj.pixelWidth; } 
		}
		else if (this.ns4) {sValue = eval("docObj.clip." + sProperty);} 
		else if (this.ns6) {sValue = document.defaultView.getComputedStyle(docObj, "").getPropertyValue(sProperty); } 
	    else if (this.ie) { 
			if (sProperty == "width") { sValue = eval(sDiv + ".offsetWidth"); } 
			else if (sProperty == "height") { sValue = eval(sDiv + ".offsetHeight"); } 
		}
   	}
	sValue = (sValue == "") ? 0 : sValue; 
	if (isNaN(sValue)) { if (sValue.indexOf('px') > 0) { sValue = sValue.substring(0,sValue.indexOf('px')); } } 
	return parseInt(sValue); 
}
function flevPersistentLayer() { // v3.3, Marja Ribbers-de Vroed, FlevOOware
	var sD = arguments[0], oD = eval("MM_findObj('" + sD + "')"), iWW, iWH, iSX, iSY, iT = 10, sS = "";
	if (!document.layers) {oD = oD.style;}
	if (oD.tmpTimeout != null) {clearTimeout(oD.tmpTimeout);}
	var sXL = arguments[1], sXC = arguments[2], sXR = arguments[3], sYT = arguments[4], sYC = arguments[5], sYB = arguments[6];
	var iS = (arguments.length > 7) ? parseInt(arguments[7]) : 0, iPx = (arguments.length > 8) ? parseInt(arguments[8]) : 0;
	if (window.innerWidth) { // NS4, NS6 and Opera
		var oW = window; iWW = oW.innerWidth; iWH = oW.innerHeight; iSX = oW.pageXOffset; iSY = oW.pageYOffset; }
	else if (document.documentElement && document.documentElement.clientWidth) { // IE6 in standards compliant mode
		var oDE = document.documentElement; iWW = oDE.clientWidth; iWH = oDE.clientHeight; iSX = oDE.scrollLeft; iSY = oDE.scrollTop; }
	else if (document.body) { // IE4+
		var oDB = document.body; iWW = oDB.clientWidth; iWH = oDB.clientHeight; iSX = oDB.scrollLeft; iSY = oDB.scrollTop; }
	else {return;}
	var iCX = iNX = flevDivPositionValue(sD, 'left'), iCY = iNY = flevDivPositionValue(sD, 'top');
	if (sXL != "") {iNX = iSX + parseInt(sXL);} 
	else if (sXC != "") {iNX = Math.round(iSX + (iWW/2) - (flevDivPositionValue(sD, 'width')/2));}
	else if (sXR != "") {iNX = iSX + iWW - (flevDivPositionValue(sD, 'width') + parseInt(sXR));}
	if (sYT != "") {iNY = iSY + parseInt(sYT);}
	else if (sYC != "") {iNY = Math.round(iSY + (iWH/2) - (flevDivPositionValue(sD, 'height')/2));}
	else if (sYB != "") {iNY = iSY + (iWH - flevDivPositionValue(sD, 'height') - parseInt(sYB));}
	if ((iCX != iNX) || (iCY != iNY)) {
		if (iS > 0) {
			if (iPx > 0) { iT = iS;
				var iPxX = iPx, iPxY = iPx, iMX = Math.abs(iCX - iNX), iMY = Math.abs(iCY - iNY);
				// take care of diagonal movement
				if (iMX < iMY) {iPxY = (iMX != 0) ? ((iMY/iMX)*iPx) : iPx;}
				else {iPxX = (iMY != 0) ? ((iMX/iMY)*iPx) : iPx;}
				if (iPxX >= iMX) {iPxX = Math.min(Math.ceil(iPxX), iPx);}
				if (iPxY >= iMY) {iPxY = Math.min(Math.ceil(iPxY), iPx);}
				// temporary X/Y coordinates
				if ((iCX < iNX) && (iCX + iPxX < iNX)) {iNX = iCX + iPxX;}
				if ((iCX > iNX) && (iCX - iPxX > iNX)) {iNX = iCX - iPxX;}
				if ((iCY < iNY) && (iCY + iPxY < iNY)) {iNY = iCY + iPxY;}
				if ((iCY > iNY) && (iCY - iPxY > iNY)) {iNY = iCY - iPxY;} }
			else { 
				var iMX = ((iNX - iCX) / iS), iMY = ((iNY - iCY) / iS); 
				iMX = (iMX > 0) ? Math.ceil(iMX) : Math.floor(iMX); iNX = iCX + iMX; 
				iMY = (iMY > 0) ? Math.ceil(iMY) : Math.floor(iMY); iNY = iCY + iMY; } }
		if ((parseInt(navigator.appVersion)>4 || navigator.userAgent.indexOf("MSIE")>-1) && (!window.opera)) {sS="px";}
		if (iMX != 0) {eval("oD.left = '" + iNX + sS + "'");}
		if (iMY != 0) {eval("oD.top = '" + iNY + sS + "'");} }
	var sF = "flevPersistentLayer('" + sD + "','" + sXL + "','" + sXC + "','" + sXR + "','" + sYT + "','" + sYC + "','" + sYB + "'," + iS + "," + iPx + ")";
	oD.tmpTimeout = setTimeout(sF,10);
}
function flevInitPersistentLayer() { // v3.3, Marja Ribbers-de Vroed, FlevOOware
	if (arguments.length < 8) {return;}
	var sD = arguments[0]; if (sD == "") {return;}
	var	oD = eval("MM_findObj('" + sD + "')"); if (!oD) {return;}
	var iCSS = parseInt(arguments[1]);
	var sXL = arguments[2], sXC = arguments[3], sXR = arguments[4], sYT = arguments[5], sYC = arguments[6], sYB = arguments[7];
	var iS = (arguments.length > 8) ? parseInt(arguments[8]) : 0, iPx = (arguments.length > 9) ? parseInt(arguments[9]) : 0;
	if (iCSS != 0) { if (!document.layers) {oD = oD.style;} sXL = parseInt(oD.left), sYT = parseInt(oD.top);}
	var sF = "flevPersistentLayer('" + sD + "','" + sXL + "','" + sXC + "','" + sXR + "','" + sYT + "','" + sYC + "','" + sYB + "'," + iS + "," + iPx + ")";
	eval(sF);
}
function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}
function MM_controlSound(x, _sndObj, sndFile) { //v3.0
  var i, method = "", sndObj = eval(_sndObj);
  if (sndObj != null) {
    if (navigator.appName == 'Netscape') method = "play";
    else {
      if (window.MM_WMP == null) {
        window.MM_WMP = false;
        for(i in sndObj) if (i == "ActiveMovie") {
          window.MM_WMP = true; break;
      } }
      if (window.MM_WMP) method = "play";
      else if (sndObj.FileName) method = "run";
  } }
  if (method) eval(_sndObj+"."+method+"()");
  else window.location = sndFile;
}
function SNR_PersistLayer(divID,firstTime) { //v3.1
	if (!document.all && !document.layers && !document.getElementById) { return; } //abort load
	var offset;
	var isIE 	= (document.all) ? 1 : 0;
	var isNav	= (document.layers) ? 1 : 0;
	var isMoz	= (document.getElementById && parseInt(navigator.appVersion) >= 5) ? 1 : 0;
	if (isIE || isNav) { var theLayer = MM_findObj(divID); }
	else if (isMoz) { var theLayer = document.getElementById(divID); }
	else{ }
	if (eval(firstTime)) {
		theLayer.XPOS = 0;
		theLayer.YPOS = 0;
		}
	if (isNav) {
		offset = self.pageXOffset;
		if (offset != theLayer.XPOS) {
			offset = offset - theLayer.XPOS;
			theLayer.left += offset;
			theLayer.XPOS = theLayer.XPOS + offset;
			}		
		offset = self.pageYOffset;
		if (offset != theLayer.YPOS) {
			offset = offset - theLayer.YPOS;
			theLayer.top += offset;
			theLayer.YPOS = theLayer.YPOS + offset;
			}
		}
	else if (isMoz) {
		offset = self.pageXOffset;
		if (offset != theLayer.XPOS) {
			var position = parseInt(theLayer.style.left.replace("px",""));
			offset = offset - theLayer.XPOS;
			position += offset;
			theLayer.XPOS = theLayer.XPOS + offset;
			theLayer.style.left = position + 'px';
			}
		offset = self.pageYOffset;
		if (offset != theLayer.YPOS) {
			var position = parseInt(theLayer.style.top.replace("px",""));
			offset = offset - theLayer.YPOS;
			position += offset;
			theLayer.YPOS = theLayer.YPOS + offset;
			theLayer.style.top = position + 'px';
			}
		}
	else{
		offset = window.document.body.scrollLeft;
		if (offset != theLayer.XPOS) {
			offset = offset - theLayer.XPOS;
			theLayer.style.pixelLeft += offset;
			theLayer.XPOS = theLayer.XPOS + offset;
			}
			
		offset = window.document.body.scrollTop;
		if (offset != theLayer.YPOS) {
			offset = offset - theLayer.YPOS;
			theLayer.style.pixelTop += offset;
			theLayer.YPOS = theLayer.YPOS + offset;
			}
		}
	theLayer.timerid = setTimeout("SNR_PersistLayer(\""+divID+"\",'false')",50);
	document.MM_returnValue = false;
	theLayer.MM_returnValue = false;
	}
	
	function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
   var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
   if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_setTextOfLayer(objName,x,newText) { //v4.01
  if ((obj=MM_findObj(objName))!=null) with (obj)
    if (document.layers) {document.write(unescape(newText)); document.close();}
    else innerHTML = unescape(newText);
}
function imageheros() {
  var j,d="",l="",m="",p="",q="",z="",KW_ARI= new Array()
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_1.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_2.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_3.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_4.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_5.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_6.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_7.jpg'; 
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_8.jpg'; 
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_9.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_10.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_11.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_12.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_13.gif';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_14.gif';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_15.gif';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_16.gif';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_17.gif';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_18.gif';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_19.gif';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_20.gif';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_21.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_22.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_23.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_24.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_25.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_26.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_27.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_28.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_29.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_30.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_31.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_32.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_33.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_34.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_35.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_36.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_37.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_38.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_39.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_40.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_41.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_42.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_43.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_44.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_45.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_46.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_47.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_48.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_49.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_50.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_51.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_52.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_53.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_54.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_55.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_56.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_57.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_58.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_59.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_60.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_61.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_62.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_63.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_64.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_65.jpg'; 
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_66.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_67.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_68.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_69.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_70.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_71.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_72.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_73.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_74.jpg';  
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_75.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_76.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_77.jpg';
  KW_ARI[KW_ARI.length]='http://www.tourgueniev.com/images/heros/heros_78.jpg';
  j=parseInt(Math.random()*KW_ARI.length);
  j=(isNaN(j))?0:j;
  if (KW_ARI[j].indexOf('?')==-1) {
    document.write("<img border=1 vspace=10 alt='Ce h&eacute;ros' src='"+KW_ARI[j]+"'>");
  }
  else {
    nvp=KW_ARI[j].substring(KW_ARI[j].indexOf('?')+2).split('&');
    for(var i=0;i<nvp.length;i++) {
      sub=nvp[i].split('=');
   	  switch(sub[0]) {
 	    case 'link':
          l="<a href='"+unescape(sub[1])+"'>";
          p="</a>";
		  break;
	    case 'target':
          q=" target='"+unescape(sub[1])+"'";
  		  break;
  	    default:
          m+=" "+sub[0]+"='"+unescape(sub[1])+"'";
  		  break;
      }
    }
    z=(l!="")?((q!="")?l.substring(0,l.length-1)+q+">":l):"";
    z+="<img vspace=10 aalt='Ce h&eacute;ros' border=1 src='"+KW_ARI[j].substring(0,KW_ARI[j].indexOf('?'))+"'"+m+">"+p;
  document.write(z);
  }
}

function texteheros() {
var txtList = new Array()
txtList[txtList.length]="Couillon le canard";
txtList[txtList.length]="Tourgueniev";
txtList[txtList.length]="Troudair%20%E0%20lunette";
txtList[txtList.length]="Couillon%20le%20canard";
txtList[txtList.length]="Bourdieu";
txtList[txtList.length]="El%20Presidente";
txtList[txtList.length]="Das%20Kapital";
txtList[txtList.length]="Moi";
txtList[txtList.length]="Toi";
txtList[txtList.length]="Ejac%20faciale";
txtList[txtList.length]="Mimi%20Pinson";
txtList[txtList.length]="Marthe%20Mercadier";
txtList[txtList.length]="Dalida";
txtList[txtList.length]="Lacan";
txtList[txtList.length]="Ganesh";
txtList[txtList.length]="Jim%20Profit";
txtList[txtList.length]="John%20Wayne";
txtList[txtList.length]="La%20Hype";
txtList[txtList.length]="Corto";
txtList[txtList.length]="Mao";
txtList[txtList.length]="Marx";
txtList[txtList.length]="Kant";
txtList[txtList.length]="J-lo";
txtList[txtList.length]="Kylie";
txtList[txtList.length]="Chihiro";
txtList[txtList.length]="El%20cavalero";
txtList[txtList.length]="Robert%20Hue";
txtList[txtList.length]="Goldorak";
txtList[txtList.length]="Marseille";
txtList[txtList.length]="Dans%20ta%20face";
txtList[txtList.length]="La%20mondialisation";
txtList[txtList.length]="Jos%E9%20Bov%E9";
txtList[txtList.length]="Joey%20Starr";
txtList[txtList.length]="La%20honte";
txtList[txtList.length]="Marilyn";
txtList[txtList.length]="Les%20poules";
txtList[txtList.length]="Shaaktiman";
txtList[txtList.length]="Les%20demoiselles";
txtList[txtList.length]="Benoit";
txtList[txtList.length]="Porno";
txtList[txtList.length]="Lecteur";
txtList[txtList.length]="Pitichat";
txtList[txtList.length]="Lucifer, prince du mal";
txtList[txtList.length]="Solune";
txtList[txtList.length]="Mon gode";
txtList[txtList.length]="Ton string";
txtList[txtList.length]="Piou-Piou";
txtList[txtList.length]="Lesbian Solution";
txtList[txtList.length]="Scaramouche";
txtList[txtList.length]="Nixon";
txtList[txtList.length]="King mob";
txtList[txtList.length]="Philip K. Dick";
txtList[txtList.length]="Casseur";
txtList[txtList.length]="Jean Marc Thibault";
txtList[txtList.length]="Nefertiti";
txtList[txtList.length]="Jack Burton";
txtList[txtList.length]="Martin Luther King";
txtList[txtList.length]="Costes";
txtList[txtList.length]="Nessie";
txtList[txtList.length]="Emma bovary";
txtList[txtList.length]="Monsieur meuble";
txtList[txtList.length]="Geradon";
txtList[txtList.length]="Jean-Marc Barr";
txtList[txtList.length]="Youri Andropov";
txtList[txtList.length]="Barbe noire";
txtList[txtList.length]="Piglia";
txtList[txtList.length]="Modeste et Ponpon";
txtList[txtList.length]="Tif et Tondu";
txtList[txtList.length]="Screamin' Jay hawkins";
txtList[txtList.length]="T&ecirc;te de Mort";
txtList[txtList.length]="Jean Meyrand";
txtList[txtList.length]="Le D&eacute;pot";
txtList[txtList.length]="Michou";
txtList[txtList.length]="V%E9ronique et Davina";
txtList[txtList.length]="Superman";
txtList[txtList.length]="Dora Maar";
txtList[txtList.length]="Dromadaire d'artillerie";
txtList[txtList.length]="Gustave Le Gray";
txtList[txtList.length]="Louis-Napol%E9on Bonaparte";
txtList[txtList.length]="Gino!";
txtList[txtList.length]="Murakami";
txtList[txtList.length]="l'Art japonais";
txtList[txtList.length]="Patate";
txtList[txtList.length]="Poubelle";
txtList[txtList.length]="Barbarella";
txtList[txtList.length]="Boutros Boutros Ghali";
txtList[txtList.length]="Tatayet";
txtList[txtList.length]="RN 20";
txtList[txtList.length]="Isabella Rossellini";
txtList[txtList.length]="Episiotomie";
txtList[txtList.length]="Mauvais go&ucirc;t";
txtList[txtList.length]="Michael Knight";
txtList[txtList.length]="Aliette";
txtList[txtList.length]="ThTh";
txtList[txtList.length]="Nicolai";
txtList[txtList.length]="Site de merde";
txtList[txtList.length]="Baltringue";
txtList[txtList.length]="John Holmes";
txtList[txtList.length]="Tourgueniste";
txtList[txtList.length]="Le Wub";
txtList[txtList.length]="Gueule de bois";
txtList[txtList.length]="Car(r)oline";
j=parseInt(Math.random()*txtList.length);
j=(isNaN(j))?0:j;
document.write(unescape(txtList[j]));
}window.$ = function (id) {	return document.getElementById(id);}window.isLoaded = false;
window.loadStack = new Array();
window.appendLoadEvent = function (event) {
    if (this.isLoaded == true) {
        event();
        return true;
    }
    
    this.loadStack.push(event);
    return true;
}

//window.isLoaded = true;

window.executeLoadEvents = function () {
    var i = 0;
    for (i = 0; i  < this.loadStack.length; i++) {
        this.loadStack[i]();
    }
    this.loadStack = new Array();
}

window.onload = function() {
        window.executeLoadEvents();
        window.isLoaded = true;
        return true
    };window.igor = {
	range : {
		between : function (min, max) {
			if (max < min) {
				return igor.range.between(maw, min);
			}
			return min + Math.floor(Math.random() * (max - min + 1));
		}
	},		entrances2hell : function (where) {		var str = '';
		str = '<table>';
		for (var i = 0; i < 3; i++) {
			str += '<tr>';
			for (var j = 0; j < 3; j++) {
				str += '<td><img src="http://www.entrances2hell.co.uk/pic'+igor.range.between(100, 400)+'.gif" '
					+ 'onerror="this.src = \'http://www.entrances2hell.co.uk/pic\'+igor.range.between(100, 400)+\'.gif\'; return true;" '
					+ 'border="1" width="150" height="120"></td>';
			}
			str += '</tr>';
		}
		str += '</table>';				var w = $(where);				if (!!w) {			w.innerHTML = str;		}			}	
}

window.appendLoadEvent(function () {		igor.entrances2hell('entrances2hell');	});