		var myTimer = setTimeout("mmn(0, 1)", 500);
		var isOver = true;
		document.writeln('<table id="mmntable" style="display: none; position: absolute; top: 297px;" onmouseover="javascript:OverDHTML();" onmouseout="javascript:OutDHTML();">');
		document.writeln('<tr><td id="mmninner" class="mmn"></td></tr></table>');
		function getWidth(){
			if(screen.width){return screen.width;}else{return 1024;}
		}
		function mmn(id, state){
			// первичные переменные
			var center_formula = (getWidth()/2) + ((1280-getWidth())/2);
			var xpos = new Array("220", "152", "70", "44", "151", "241", "328");
			var xtext = new Array(
			'<table class="shtr" border=0 cellpadding=0 cellspacing=0 width=340 bgcolor=#FFFFFF style="border: 1px solid #9c9c9c"><tr><td height=33><p style="text-align:left; margin-left:15">Vacation Rentals by Owner - <a href="http://www.ComfortVacation.com">www.ComfortVacation.com</a></td></tr><tr><td height=33 style="border-top:1px solid #9c9c9c"><p style="text-align:left; margin-left:15">Global Home Exchange - <a href="http://www.ComfortGHE.com">www.ComfortGHE.com</a></td></tr><tr><td height=33 style="border-top:1px solid #9c9c9c"><p style="text-align:left; margin-left:15">Properties for Rent by Owner - <a href="http://www.ComfortRBO.com">www.ComfortRBO.com</a></td></tr><tr><td height=33 style="border-top:1px solid #9c9c9c"><p style="text-align:left; margin-left:15">Home for Sale by Owner - <a href="http://www.ComfortSBO.com">www.ComfortSBO.com</a></td></tr></table>'
			);
			// отображение
			getTemplate(xtext[id]);
			if(id < 3){
				document.all.mmntable.style.left = center_formula - eval(xpos[id]);
			}else{
				document.all.mmntable.style.left = center_formula + eval(xpos[id]);
			}
			if(state=="0"){
				clearTimeout(myTimer);
				OverDHTML();
				document.all.mmntable.style.display = 'block';
			}else{
				OutDHTML();
			}
		}
		function getTemplate(txt){
			document.all.mmninner.innerHTML = txt;
		}
		function OverDHTML() { 
			clearTimeout(myTimer); 
			isOver = true; 
		}
		function OutDHTML() { 
			clearTimeout(myTimer);
			isOver = false; 
			myTimer = setTimeout("HideDHTML()",500);
		}
		function HideDHTML(){
			document.all.mmntable.style.display = 'none';
		}
