<!--

function createlink() {
var text1 = document.lc.text1.value;
var text2 = document.lc.text2.value;
var text3 = document.lc.text3.value;

var lc = "<FONT FACE='verdana' size='3'><h3>Link Generator</h3>This is what your link's HTML looks like. Copy the html code below and paste it into your html file where you want the link to appear:<XMP><a href='"+ text1 +"' title='"+ text3 +"'>"+ text2 +"</a></XMP> This is what it will look like in action: <a href='"+ text1 +"' title='"+ text3 +"'>"+ text2 +"</a> <HR SIZE='2'></FONT>";


document.open();

document.write(lc);

document.close();
}
//-->

