function eml_us(nContact)
{
var u_a="mail";
var u_b="to:";
var u_c="";
var u_d="@";
var u_e="perfectparadigm";
var u_g=".com";
var u_h="?subject=";
var u_i="";

if (nContact == 1) {
	u_c ="contactus";
	u_h = u_h + "Question/Tip:";
	u_i = "Contact Us";
}
else if (nContact == 2) {
	u_c ="manisha";
	u_i = "Manisha Pandit";
}
else if (nContact == 3) {
	u_c ="divyesh";
	u_i ="Divyesh Patel";
}
else if (nContact == 4) {
	u_c ="projects";
	u_h = u_h + "I have a project...";
	u_i = "Projects Team";
}
else if (nContact == 9) {
	u_c ="contactus";
	u_h = u_h + "404: "+document.location;
	u_i = "clicking here";
}
document.write ("<a href='"+ u_a + u_b + u_c + u_d + u_e + u_g + u_h +"'>" + u_i + "</a>");

}