// JavaScript Document
<!--
function popme (a) {
	var loc = a.getAttribute("href");
	if (loc!="") {
		window.open(loc, "_blank");
		return true;
	} else {
		return false;
	}
}
function popme (a, width, height) {
	var loc = a.getAttribute("href");
	if (loc!="") {
		window.open(loc, "_blank", "width="+width+",height="+height);
		return true;
	} else {
		return false;
	}
}
function popme (a, width, height, extras) {
	var loc = a.getAttribute("href");
	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;
}
//-->