function eml(email, domain) {
	address = email + '@' + domain;
	document.write("<a href=\"ma" + "i" + "lto:" + address + "\">" + address + "</a>");
}

function popUpImg(URL,w,h) {
	w = w+50;
	if (w < 600) {
		w = 600;
	}
	if (h > screen.height-200) {
		h = screen.height-150;
	} else {
		h += 100;
	}
	day = new Date();
	id = day.getTime();
	var X = (screen.width / 2) - parseInt(w/2);
	var Y = 30;
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+w+',height='+h+',left="+X+",top="+Y+"');");
}
