// JavaScript Document
var NS,IE,N06
NS   = (document.layers) ? true:false;                 // NETSCAPE 4 ******************
IE   = (document.all) ? true:false;                    // IE 4Up  *********************
N06 = ((document.getElementById)&&(!IE))?true:false;   // NETSCAPE 6 etc. *************
// END BROWSER VARIABLES **************************************************************
// mouseover scripts including fix for NS complete path *******************************

function preload(imgObj,imgSrc) {
	if (document.images) {
		eval(imgObj+' = new Image()');
		eval(imgObj+'.src = "'+imgSrc+'"');
	}
}

function imgChange(i,imgObj,imgName) {
	if (NS && i!=null){
		eval('document.'+i+'.document.images["'+imgName+'"].src = '+imgObj+'.src');
	}else {
		document.images[imgName].src = eval(imgObj+".src");
	}
}


function mailFriend() {
    var mailSubject = 'Page from Golden Union website';
    var mailBody = 'Hello %0D%0A%0D%0AI thought you might be interested in the following page from the Golden Union website: %0D%0A%0D%0A' + escape(location.href);
    document.location = 'mailto:?SUBJECT=' + mailSubject + '&BODY=' + mailBody;
}


