/* 
putlink2-dc.js *** javascript by dc. 
also uses two image files, onb.gif,offb.gif
purpose: displays filled bullet at start of line when a link is Mouseovered, open bullet when the link isn't
usage:  in html file{head}, use this language (except with angle brackets, not {s and }s):  
         {script language=javascript src="putlink-dc.js"}{/script}
then when you are putting in a link in the {body}, put it like this:

        <br>Click here to go to{script}putLink2("Click here to go to","http://www.ask.com","Ask Jeeves"){/script}

If the link is the first thing in the line, above should say ....putLink2("","http:www.ask.com","Ask Jeeves")...

this looks something like this on the web page when you mouseover

o Click here to go to Ask Jeeves

For another version, that looks sort of like this, see "putlink-dc.js"

Click here to go to [Ask Jeeves]

*/

IMAGE01 = "onb.gif";  
IMAGE02 = "offb.gif";

function imgover(i1)
{     
i1.src = IMAGE01;
}
function imgout(i1)
{     
i1.src = IMAGE02;
}

var imNo = 0

function putLink2(item,item2,item3)
{

var dQ='"';
var linK = dQ+item2+dQ ;

imNo = imNo + 1;
//document.write(imNo);
var imagE= dQ+"tempImg"+imNo+dQ ;

document.write('<img SRC="offb.gif" NAME=');
document.write(imagE);
document.write(' BORDER=0 >');
document.write(item);
document.write('<a href=');
document.write(linK);
document.write(' onMouseOver="imgover(tempImg'+imNo+')"'); 
document.write(' onMouseOut="imgout(tempImg'+imNo+')"');
document.write(' >');
document.write(item3+'</a>');
}
