  function jsLink(lType, first, second, third, fourth)
   {	var html = ""; var _AT_ = "@"; var _DOT_ = "."; var mayle = first + _AT_ + second + _DOT_ + third;
		switch(lType)
		{
			case("mail"): html = "<a href=\"mail" + "to:" + mayle + "\" class=\"contentlinks\">" + mayle + "</a>" ;break;
			case("mail1"): html = "<a href=\"mail" + "to:" + mayle + "\" class=\"" + fourth + "\">" + mayle + "</a>" ;break;
			case("contactus"): html = "<a href=\"mail" + "to:" + mayle + "\">" + fourth + "</a>" ;break;
		}
		return html;
   }
 