// Mortgage Calculator Plus

// ------------------------------------------------------------------------

// Copyright (c) 2005, MortgageCalculatorPlus.com

// ------------------------------------------------------------------------

// This file is part of "Mortgage Calculator Plus" software

// ------------------------------------------------------------------------



function show_tip(tipid){

	offset_x = 10;

	offset_y = -10;

	destobj = document.getElementById(tipid);

	tipbox  = document.getElementById('tiplayer');

	tipbox.style.left=destobj.offsetWidth+getAbsoluteLeft(destobj) + offset_x;

	tipbox.style.top=getAbsoluteTop(destobj) + offset_y;

	tipbox.innerHTML=tips[tipid];

	tipbox.style.visibility="visible";

};

function hide_tip(){

	tipbox = document.getElementById('tiplayer');

	tipbox.style.visibility="hidden";

};

function getAbsoluteLeft(oNode){

	var oCurrentNode=oNode;

	var iLeft=0;

	while(oCurrentNode.tagName!="BODY"){

		iLeft+=oCurrentNode.offsetLeft;

		oCurrentNode=oCurrentNode.offsetParent;

	}

	return iLeft;

};

function getAbsoluteTop(oNode){

	var oCurrentNode=oNode;

	var iTop=0;

	while(oCurrentNode.tagName!="BODY"){

		iTop+=oCurrentNode.offsetTop;

		oCurrentNode=oCurrentNode.offsetParent;

	}

	return iTop;

};


