<!--

	var tipBoxWnd = null;
    var currTipBoxID = 0;



    function openTipBox(title, url) {
		var wndWidth = 460;
		var wndHeight = 410;
		var positionLeft = (screen.width - wndWidth) / 2;
		var positionTop = (screen.height - wndHeight) / 2;
	    var prmStr = "width=" + wndWidth + ",height=" + wndHeight + ",top=" + positionTop + ",left=" + positionLeft + 
			", toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=yes,directories=no,titlebar=no,hotkeys=no";
    	tipBoxWnd = window.open(url, "TipBoxWin", prmStr);
	    tipBoxWnd.focus();

 		
        /* var tmpID = 0;
        var offY = document.body.scrollTop;
        if (currTipBoxID > 0) closeTipBox();
        if (offY < 100) tmpID = 1;
        else if (offY < 300) tmpID = 2;
        else tmpID = 3;
        document.getElementById("tipbody" + tmpID).src = url;
        document.getElementById("tipbox" + tmpID).style.display = "inline";
        currTipBoxID = tmpID; */
    }


    function closeTipBox() {
		if (tipBoxWnd != null) {
			tipBoxWnd.close();
			tipBoxWnd = null;
		}

        /* document.getElementById("tipbox" + currTipBoxID).style.display = "none";
        currTipBoxID = 0; */
    }

// -->


