home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Organic Chemistry (8th Edition)
/
Image.iso
/
pc
/
edugen
/
media
/
js
/
button.js
next >
Wrap
Text File
|
2002-12-05
|
1KB
|
61 lines
// Edugen JavaScripts Library V1.0 =========================================
//
// File button.js
//
// This file is part of the Edugen JavaScripts Library.
// Copyright (c) 2002 WWL Corp. - A Subsidiary of John Wiley & Sons, Inc.
// =========================================================================
function imageObject(name,imageSrc)
{
this.name = name;
this.Out = new Image();
this.Over = new Image();
this.Down = new Image();
this.Out.src = imageSrc + "out.gif";
this.Over.src = imageSrc + "over.gif";
this.Down.src = imageSrc + "down.gif";
this.mOut = mOut;
this.mOver = mOver;
this.mDown = mDown;
}
function mOut()
{
var in_name;
if (arguments[0] != null)
{
in_name = "" + arguments[0];
}
else
{
in_name = this.name;
}
eval("document."+in_name+".src="+this.name+"Image.Out.src;");
}
function mOver()
{
var in_name;
if (arguments[0] != null)
{
in_name = "" + arguments[0];
}
else
{
in_name = this.name;
}
eval("document."+in_name+".src="+this.name+"Image.Over.src;")
}
function mDown()
{
var in_name;
if (arguments[0] != null)
{
in_name = "" + arguments[0];
}
else
{
in_name = this.name;
}
eval("document."+in_name+".src="+this.name+"Image.Down.src;")
}