// IMAGE PRELOADER

function preload(imgObj,imgSrc) {
	if (document.images) {
		eval(imgObj+' = new Image()')
		eval(imgObj+'.src = "'+imgSrc+'"')
	}
}

// -----------------------------------

// IMAGE CHANGER

function change_image(img,imgSrc) {
	document[img].src = imgSrc ;
}

// -----------------------------------

// HEADER FRAME IMAGE CHANGER
// to change an image in another frame

function swapHead(imgName,imgSrc) {

	top.header.document[imgName].src = imgSrc

}

// -----------------------------------

// "PRINT THIS PAGE" BUTTON SCRIPT

function printit(){
	if (!window.print){
		alert("You need NS4.x or IE5 to use this print button!")
		return
	}
	window.print()
}

// this is the link:
// <a href="javascript:printit()">

// -----------------------------------

// WINDOW POPUP

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=700,height=500,left = 226,top = 182');");
}

// -----------------------------------

// TEXT CHANGER

function swaptext(id,string) {
}