

var instatus = false;	//determines if tooltip will also be displayed
			//in the status bar
var ttname = "tooltip"; //name of the tooltip div tag (used on next line)
var bcolor = "000000";	//background color of tooltip
var fcolor = "#CCCCCC";		//color of tooltip text
var opacity = 85;		//translucency of tooltip
var borderstyle = "solid";	//tooltip border style
var borderwidth = 1;		//tooltip border width
var bordercolor = "#91a6a0";	//tooltip border color
var font = "MS Sans Serif";	//font family
var fontsize = 9;		//font size
//this is the div tag that holds the tooltip
document.write('<div style="color: '+fcolor+'; z-index: 2000; position: absolute; filter: alpha(opacity='+opacity+'); background-color: '+bcolor+'; border-style: '+borderstyle+'; border-width: '+borderwidth+'; border-color: '+bordercolor+'; font-family: '+font+'; font-size: '+fontsize+'; visibility: hidden;" id="'+ttname+'">');
document.write('Just an empty link!');
document.write('</div>');
function ToolTip() {
	e = event;
	es = event.srcElement;	//event source
	//if the event source has a tooltip set and you DID move the
	//mouse over a tag, then drag the tooltip
	if (es.tooltip != "" && es.tooltip != undefined) {
		document.getElementById(ttname).style.visibility = "visible";
		document.getElementById(ttname).style.left = e.x+10;
		document.getElementById(ttname).style.top = e.y;
		document.getElementById(ttname).style.position = "absolute";
		document.getElementById(ttname).innerHTML = es.tooltip;
		if (instatus) {
			window.status = es.tooltip;
		}
	}
}
function hideToolTip() {
	//hide tooltip
	document.getElementById(ttname).style.visibility = "hidden";
	if (instatus) {
		window.status = "";
	}
}
document.onmousemove = ToolTip;
document.onmouseout = hideToolTip;

function disableselect(e){
return false }
function reEnable(){
return true }
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable }


<!--
var message="He doesn't need the wisdom of the whole world while you stink here";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// --> 


<!--
msg = "He doesn't need the wisdom of the whole world while you stink here";

timeID = 10;
stcnt = 16;
wmsg = new Array(33);
        wmsg[0]=msg;
        blnk = "                                                               ";
        for (i=1; i<32; i++)
        {
                b = blnk.substring(0,i);
                wmsg[i]="";
                for (j=0; j<msg.length; j++) wmsg[i]=wmsg[i]+msg.charAt(j)+b;
        }

function wiper()
{
        if (stcnt > -1) str = wmsg[stcnt]; else str = wmsg[0];
        if (stcnt-- < -40) stcnt=31;
        status = str;
        clearTimeout(timeID);
        timeID = setTimeout("wiper()",100);
}

wiper()
// -->

<!--
function winop()
{
windop = window.open("http://www.propaganda666.com/WysiwygPro/T/TSAOG_reviews.htm", "mywin", "height=420,width=660");
}
function wincl() 
{
windop.close();
}
-->
