  // JS function for uncrypting spam-protected emails:
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-(1));
	}
	return r;
}
  // JS function for uncrypting spam-protected emails:
function linkTo_UnCryptMailto(s)	{	//
	location.href=UnCryptMailto(s);
}
		
function MM_openBrWindow(theURL,winname,features) {
  window.open(theURL,winname,features);
}

function open_pop_up(url, name) {
        var mywindow = new Object();
        mywindow = window.open(url, name, 'location=no,menubar=no,resizable=yes,status=yes,titlebar=no,toolbar=no,scrollbars=no,width=955, height=670,top=0,left=0');
		if (mywindow){
        	mywindow.focus();
			return false;
		}
		return true;
}
