Title ~ JAVAScript

Title
Using the following JavaScript in your page, having created a couple of graphics already, you can create lively little buttons or plain graphics for your Website such as the one at the bottom of this page...


The Code to be placed
in the <HEAD>
<SCRIPT LANGUAGE = "Javascript">

image1 = new Image();
image1.src = "backbut1.gif";
image1on = new Image();
image1on.src = "backbut2.gif";

function on3(name) {
document[name].src = eval(name + "on.src");
}
function off3(name) {
document[name].src = eval(name + ".src");
}
NN3 = true;

function on(name) {
if (NN3) on3(name);
}
function off(name) {
if (NN3) off3(name);
}

</SCRIPT>
The Code to be placed
in the <BODY>
<A HREF="javascript:history.go(-1);"
onmouseover="on('image1');" onmouseout="off('image1')">
<IMG SRC="backbut1.GIF" WIDTH=110 HEIGHT=30 BORDER=0
ALT="JavaScript Back-A-Page Button" NAME="image1"></A>


CV   JavaScript Back-A-Page Button E-mail