<!--
var siteWin = null;

function openWin(URL, windowName, windowWidth, windowHeight, scrollbars) {
	var xposition = 400; 
	var yposition = 300;

	if ((parseInt(navigator.appVersion) >= 4 )) {
		xposition = (screen.width - windowWidth) / 2;
		yposition = (screen.height - windowHeight) / 2 -20;
	}
	
	if (!scrollbars) var scrollbars = 0;
	
	var args = "width=" + windowWidth + ","
		+ "height=" + windowHeight + ","
		+ "location=0,"
		+ "menubar=0,"
		+ "scrollbars=" + scrollbars + ","
		+ "status=0,"
		+ "titlebar=0,"
		+ "hotkeys=0,"
		+ "screenx=" + xposition + ","  // NN Only
		+ "screeny=" + yposition + ","  // NN Only
		+ "left=" + xposition + ","     // IE Only
		+ "top=" + yposition;           // IE Only
	
	if (siteWin != null && !siteWin.closed) {
		siteWin.close();
	}

	siteWin = window.open(URL, windowName, args);
	siteWin.focus();
}

function UnCryptMailto(s) {
	var n = 0;
	var r = "";
	for(var i = 0; i < s.length; ++i) { 
		n = s.charCodeAt(i); 
		if (n >= 8364) n = 128;
		r += String.fromCharCode(n-(2)); 
	}
	return r;
}

function linkTo_UnCryptMailto(s)	{
	location.href=UnCryptMailto(s);
}

// -->
