<!-- //
function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

function openWindow(helpURL, winName, features) {
	var hwin = window.open(helpURL,"hwin","toolbar=yes,scrollbars=yes,width=555,height=480,resizable=yes");
	hwin.focus();   
								
								}
// -->
