<!-- Begin
if (window != top)
	top.location.href = location.href;

function openAddFavorite(url) {
	win=window.open("/misc/add_favorite.htm?src="+url,
	"addFav", "height=1, width=1, resizeable=yes, scrollbars=yes, status=yes, top=, left=")
	win.moveTo(-100,-100);
}

function linkText (c,n,d) {
	c += ' ';
	var length = c.length;
	var number = 0;
	var bar = 0;
	var answer = '';
	for(var i = 0; i < length; i++) {
		number = 0;
		bar = 0;
		while(c.charCodeAt(i) != 32) {
			number = number * 10;
			number = number + c.charCodeAt(i)-48;
			i++;
		}
		answer += String.fromCharCode(decrypt(number,n,d));
	}
	parent.location = 'm'+'a'+'i'+'l'+'t'+'o'+':'+answer;
}

function showText(c,n,d) {
	c += ' ';
	var length = c.length;
	var number = 0;
	var bar = 0;
	var answer = '';
	for(var i = 0; i < length; i++) {
		number = 0;
		bar = 0;
		while(c.charCodeAt(i) != 32) {
			number = number * 10;
			number = number + c.charCodeAt(i)-48;
			i++;
		}
	document.write('&');
	document.write('#');
	document.write(decrypt(number,n,d));
	}
}

function decrypt(c,n,d) {
if (d % 2== 0) {
	bar = 1;
	for(var i = 1; i <= d/2; i++) {
		foo = (c*c) % n;
		bar = (foo*bar) % n;
	}
}
else {
	bar = c;
	for(var i = 1; i <= d/2; i++) {
		foo = (c*c) % n;
		bar = (foo*bar) % n;
	}
	}
	return bar;
}

function openTerm01() {
	window.open("/terms/index.asp", "null", "width=650, height=400, status=no, toolbar=no, menubar=no, location=no, resizable=no, titlebar=no, scrollbars=yes");
}

function openPriv01() {
	window.open("/privacy/index.asp", "null", "width=650, height=400, status=no, toolbar=no, menubar=no, location=no, resizable=no, titlebar=no, scrollbars=yes");
}

function openReason01() {
self.name = "BigZ";
var new_window =
	window.open("/services/internet/reasons.asp", "Reasons", "width=650, height=400, status=no, toolbar=no, menubar=no, location=no, resizable=no, titlebar=no, scrollbars=yes");
}

			function load() {

			}

			function makePopup (url, name, w , h) {
				pop (url, name, w , h, 'no');
			}

			function makePopup2 (url, name, w , h) {
				pop (url, name, w , h, 'yes');
			}

			function pop (url, name, w , h, scroll) {
				var top, left;
				top = screen.availHeight/2 - h/2; // center
				left = screen.availWidth/2 - w/2; // center

				window.open(url,name,"width="+ w +",height=" + h + ",top="+top+",left="+left+",toolbar=no,location=no,directories=no,status=no,scrollbars=" + scroll + ",resizable=no,menubar=no,screenX=200,screenY=200");
			}

// Netscape 4x resize bug handling
function init() {
  setTimeout("window.onresize = redo", 1000);
}

function redo() {
  window.location.reload();
}

if (ns4) window.onload = init;

// END - Netscape 4x resize bug handling

if ( !document.all ) {
	if (document.getElementById){
		var ns6 = true;
	}
}
var ie4 = (document.all);
var ns4 = (document.layers);
var onInvalidMessageText;
var onInvalidMessageTextStem;
var OKtoPost;

var layeron = '';
var xpos = 30;
var ypos = 30;

if (document.layers) { // Netscape
    document.captureEvents(Event.MOUSEMOVE);
    document.onmousemove = captureMousePosition;
} else if (document.all) { // Internet Explorer
    document.onmousemove = captureMousePosition;
} else if (document.getElementById) { // Netcsape 6
    document.onmousemove = captureMousePosition;
}
// Global variables
xMousePos = 0; // Horizontal position of the mouse on the screen
yMousePos = 0; // Vertical position of the mouse on the screen
xMousePosMax = 0; // Width of the page
yMousePosMax = 0; // Height of the page

function captureMousePosition(e) {
    if (document.layers) {
        // When the page scrolls in Netscape, the event's mouse position
        // reflects the absolute position on the screen. innerHight/Width
        // is the position from the top/left of the screen that the user is
        // looking at. pageX/YOffset is the amount that the user has
        // scrolled into the page. So the values will be in relation to
        // each other as the total offsets into the page, no matter if
        // the user has scrolled or not.
        xMousePos = e.pageX;
        yMousePos = e.pageY;
        xMousePosMax = window.innerWidth+window.pageXOffset;
        yMousePosMax = window.innerHeight+window.pageYOffset;
    } else if (document.all) {
        // When the page scrolls in IE, the event's mouse position
        // reflects the position from the top/left of the screen the
        // user is looking at. scrollLeft/Top is the amount the user
        // has scrolled into the page. clientWidth/Height is the height/
        // width of the current page the user is looking at. So, to be
        // consistent with Netscape (above), add the scroll offsets to
        // both so we end up with an absolute value on the page, no
        // matter if the user has scrolled or not.
        xMousePos = window.event.x+document.body.scrollLeft;
        yMousePos = window.event.y+document.body.scrollTop;
        xMousePosMax = document.body.clientWidth+document.body.scrollLeft;
        yMousePosMax = document.body.clientHeight+document.body.scrollTop;
    } else if (document.getElementById) {
        // Netscape 6 behaves the same as Netscape 4 in this regard
        xMousePos = e.pageX;
        yMousePos = e.pageY;
        xMousePosMax = window.innerWidth+window.pageXOffset;
        yMousePosMax = window.innerHeight+window.pageYOffset;
    }
}
//function mouseTracker() {
//	xposdoc = document.body.scrollLeft + event.x + xposoffset;
//	yposdoc = document.body.scrollTop + event.y + yposoffset;
//}

function showLayer(layername){

	if (ie4){
		if(eval(layername +'.style.visibility=="visible"')){hideLayer(layername);}
		else{
			eval(layername +'.style.visibility="visible"');
			eval(layername +'.style.left=' + xMousePos);
			eval(layername +'.style.top=' + yMousePos);
		}
	}
	else{
		if (ns4){
			if(eval('document.' + layername + '.visibility=="show"')){hideLayer(layername)}
			else{

				eval('document.' + layername + '.visibility="show"');
				eval('document.' + layername + '.left=' + xMousePos);
				eval('document.' + layername + '.top=' + yMousePos);

			}
		}
		else{
			if(eval('document.getElementById("' + layername + '").style.visibility=="visible"')){
				hideLayer(layername)
			}
			else{
				eval('document.getElementById("' + layername + '").style.visibility="visible"');
				eval('document.getElementById("' + layername + '").style.left=' + xMousePos);
				eval('document.getElementById("' + layername + '").style.top=' + yMousePos);
			}
		}
	}
	hideLayer(layeron);
	if(layeron==layername){
		layeron = '';
	}
	else {
		layeron = layername
	}
}


function hideLayer(layername){
	if(layername != ''){
		if (ie4){
			eval(layername + '.style.visibility="hidden"');

		}
		else{
			if (ns4){
				eval('document.' + layername + '.visibility="hide"');
			}
			else{
				eval('document.getElementById("' + layername + '").style.visibility="hidden"');
			}
		}
	}

}

if ( !document.all ) {if (document.getElementById){var ns6 = true;}};var ie4 = (document.all);var ns4 = (document.layers);
// End -->

