<!--function newImage(arg) {	if (document.images) {		rslt = new Image();		rslt.src = arg;		return rslt;	}}function changeImages() {		for (var i=0; i<changeImages.arguments.length; i+=2) {			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];		}	}	function newWindow(url,w,h)	{	var newwin;	var winProps = 'width=' + w + ',' + 'height=' + h;		//alert(prop);	newwin= window.open(url, 'new', winProps, resize="yes");	newwin.focus();	}			function showimage(){   document.images.large.style.visibility = "visible";   document.images.large.src = "images/button.gif";}function hideimage(){   document.images.large.style.visibility = "hidden";}// -->