var MailFile = "/email" + "." + "php";
var MailWin = null;
function EmailPopup()
{
	win = open(MailFile, "file", "scrollbars,dependent,resizable,height=400,width=400");
	win.focus();
}
function EmailFileBtn(ImageFile, ImageHeight, ImageWidth)
{
  document.write("<A HREF=\"" + MailFile + "\">" + "<IMG SRC=\"" + ImageFile + "\" ALIGN=\"bottom\" BORDER=\"0\" HEIGHT=\"" + ImageHeight + "\"WIDTH=\"" + ImageWidth + "\"></A>");
}
function EmailFileText(LinkText)
{
  document.write("<A HREF=\"" + MailFile + "\">" + LinkText + "</A>");
}
function EmailLink(mailname, hostname, domaintype, MailId)
{
  var mailadr = mailname + "@" + hostname + "." + domaintype;
	var mailtext = "mail" + "to:";
  document.write("<A HREF=" + mailtext + mailadr + ">" + MailId + "</A>");
}

