document.write("<div id='tip' style='position:absolute;visibility:hidden;left:100;top:100;'><table borderstyle=outset border=0 bordercolor=#000000><td id=tipmsg><br></td></table></div>"); 

function tipup(msg,myEvent)
{ 
// check for IE4+ DOM and W3C DOM
self.status=msg;
sc = document.all? document.all.tipmsg : document.getElementById("tipmsg");
sc.innerHTML='<font size=2 color=black>'+msg+'</font>';

//IE4+ and W3C DOM check
msg1= document.all? document.all.tip : document.getElementById("tip");
msg1.style.visibility="visible";
msg1.style.background="#ffffff";
msg1.style.top=document.body.scrollTop+myEvent.clientY+21;
msg1.style.left=document.body.scrollLeft + myEvent.clientX-25; 
msg1.style.zIndex=9;


}

function tipdown(){
msg1= document.all? document.all.tip : document.getElementById("tip");
msg1.style.visibility="hidden";
self.status="guidingvoice.org";
}


function imgSwap(oImg)
{
   var strOver  = "_on"    // mouse over pic
   var strOff = "_off"     // normal pic
   var strImg = oImg.src
   if (strImg.indexOf(strOver) != -1) 
      oImg.src = strImg.replace(strOver,strOff)
   else
      oImg.src = strImg.replace(strOff,strOver)
}

	function openWin2(wURL,wName,wProps){
		win = window.open(wURL,wName,wProps);
	}	
