
function detect_name(prefix)
{
  switch(prefix)
  {
    case 'm' : result = 'moscow'; ; break;
    case 'p' : result = 'piter'; break;
    case 'r' : result = 'russia'; break;
    default: return;
  }
  return result;
}

function email(prefix, screen)
{
	name = detect_name(prefix);
	name = name + '&#64;&#118;&#101;&#122;&#117;&#110;&#99;&#104;&#105;&#107;&#46;&#99;&#111;&#109;';
	name = '<a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;' + name + '">' + name + "</a>";
	if('js' == screen) return name;
	else document.write(name);
}

function cl(link)
{
 img = new Image();
 img.src = 'http://www.liveinternet.ru/click?*' + link;
}

function kupon(city)
{
	document.write('<table cellspacing=0 cellpadding=0 border=0 align=right style="font-family: verdana; font-size: 11px; margin-top: 8px;"><tr><td><br><br><b>' + city + '</b>:<br>+7 (964) 322-72-59<br>' + email("r", "js") + '</table>');
}

function contacts(icq)
{
	document.write('<b>Москва :</b><br>+7 (495) 22-55-813<br>' + email("m", "js") + '<br> &nbsp; <img src="' + icq + '" height=18 width=18 align=absMiddle border=0 alt=""> ICQ 335-596-399<br><b>Санкт-Петербург :</b><br>+7 (812) 336-87-07<br>' + email("p", "js"));
}