//  *************************************************************
//  *                                                           *
//  *           Javascript cross-platform library               *
//  *                                                           *
//  *  authors:  Rob Brosnan, Michael Dickson                   *
//  *  created:  20 December, 2000                              *
//  *  revised:  24 March, 2001                                 *
//  *  version:  1.1                                            *
//  *                                                           *
//  *  Copyright 2000, 2001, epimorphic incorporated.           *
//  *  This code may not be used or distributed without prior   *
//  *  permission from epimorphic.  Contact us at               *
//  *                                                           *
//  *          info@epimorphic.com                              *
//  *                                                           *
//  *  or visit us on the web at                                *
//  *                                                           *
//  *          www.epimorphic.com                               *
//  *                                                           *
//  *  NOTE:  + this library must be included in the HEAD part  *
//  *           of the html code, or it will not work properly! *
//  *                                                           *
//  *************************************************************
//  ----------------------------------------------------------
//  | This version of the library is for Internet Explorer 5 |
//  ---------------------------------------------------------
//  

function swap(imgname,imgsrc) {

	if (document.images[imgname]) {
		document.images[imgname].src = imgsrc;
	}
	
}

function epiPreloadImage(imgUrl) {

    // define a new image
    returnImg = new Image();
    
    // set the source of that image
    returnImg.src = imgUrl;
    
    // return the image
    return returnImg;
}

function go(f) {
	if (f.value!="") {
		location.href = f.value;
	}
	return true;
}
