// JavaScript Document
// charset="utf-8"
// by maca89

function MailT(link)
{
  tt = link.title;
  at = tt.indexOf('(at)');
  name = tt.substring(0, at);
  dom = tt.substring(at+4);
	window.open('mailto:'+name+'@'+dom);
	return false;
}

function GenMail(dostr, text, nastr)
{
	mail = (nastr + "(at)" + dostr);
	document.write("<a href=\"\" title=\""+mail+"\" onclick=\"return MailT(this)\">"+text+"</a>");	
}

function GenImgMail(dostr, nastr)
{
	mail = (nastr + "(at)" + dostr);
	document.write("<a href=\"\" title=\""+mail+"\" onclick=\"return MailT(this)\" alt=\"Napište mi e-mail\"><img src=\"imgs/site/mail.png\" /></a>");	
}



