<!-- 

var inm =new Array();
var dnm =new Array();
var lhs =new Array();
var rhs =new Array();

var index;

inm[0] = "webmaster"
dnm[0] = "send mail to: The Webmaster" 
lhs[0] = "nnbareswebmaster";
rhs[0] = "psavel.com?subject=NNBares Webmaster";

inm[1] = "design"
dnm[1] = "send mail to: The Website Designer" 
lhs[1] = "psavel";
rhs[1] = "psavel.com?subject=website design (refer from NNBares)";

function print_image_mail_to_link(male2, xl, yl, xr, yr) 
{
	index = -1;
	for (var i = 0; i < inm.length ; i++) {
		if (male2 == inm[i]) {
			index = i;
		}
	}
	document.write("<area shape=\"rect\" alt=\"Contact\" coords=\"" + xl + "," + yl + "," + xr + "," + yr + "\" href=\"mailto");
   document.write(":" + lhs[index] + "@");
   document.write(rhs[index] + "\">");
}

function print_mail_to_link(male2) 
{
	index = -1;
	for (var i = 0; i < inm.length ; i++) {
		if (male2 == inm[i]) {
			index = i;
		}
	}
   document.write("<a href=\"mailto");
   document.write(":" + lhs[index] + "@");
   document.write(rhs[index] + "\">");
   document.write(lhs[index] + "@" + rhs[index] + "<\/a>");
}

function print_mail_to_link_diff_disp(male2, display) 
{
	index = -1;
	for (var i = 0; i < inm.length ; i++) {
		if (male2 == inm[i]) {
			index = i;
		}
	}
   document.write("<a href=\"mailto");
   document.write(":" + lhs[index] + "@");
   document.write(rhs[index] + "\">");
   document.write(display + "<\/a>");
}

function print_mail_to_link_generic(lhsg, mhsg, rhsg) 
{
   document.write("<a href=\"mailto");
   document.write(":" + lhsg + "@" + mhsg + "." + rhsg + "\">");
	document.write(lhsg + "@" + mhsg + "." + rhsg + "<\/a>");
}

//-->