<!--
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 newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}
function openWindow(url,w,h) {
		var thatWindow;
		if (thatWindow == null){
		thatWindow = window.open(url,thatWindow,'width='+w+',height='+h+',left=10,top=10,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no');
		}
		else if (thatWindow.closed){
		thatWindow = window.open(url,thatWindow,'width='+w+',height='+h+',left=10,top=10,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no');
		}
		thatWindow.focus();
}
//-->

