// JavaScript Document
<!--
function popme (a) {
	if (a && typeof a == 'object')
		var loc = a.getAttribute("href");
	else
		var loc = a;
	
	if (loc!="") {
		window.open(loc, "_blank");
		return true;
	} else {
		return false;
	}
}
function popme (a, width, height) {
	if (a && typeof a == 'object')
		var loc = a.getAttribute("href");
	else
		var loc = a;
	
	if (loc!="") {
		window.open(loc, "_blank", "width="+width+",height="+height);
		return true;
	} else {
		return false;
	}
}
function popme (a, width, height, extras) {
	if (a && typeof a == 'object')
		var loc = a.getAttribute("href");
	else
		var loc = a;
	
	if (loc!="") {
		window.open(loc, "_blank", extras+",width="+width+",height="+height);
		return true;
	} else {
		return false;
	}
}
function max (int1, int2) {
	if (int1 > int2)
		return int1;
	else
		return int2;
}

function min (int1, int2) {
	if (int1 < int2)
		return int1;
	else
		return int2;
}
function writeEmail (domain, tld, to) {
	document.write("<a href='mailto:"+to+"@"+domain+"."+tld+"'>"+to+"@"+domain+"."+tld+"</a>");
}
//-->