function popup(src, name, width, height)  { 
	window.open(src, name,"width="+width+",height="+height+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0");
}

function emailPopup(src, name, width, height)  { 
	window.open(src, name,"width="+width+",height="+height+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1");
}

function viewerPopup(src, name, width, height)  { 
	window.open(src, name,"width="+width+",height="+height+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1");
}

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;
}

function linkTo_UnCryptMailto(s)
{
    location.href = this.unCryptMailto( s );
}