<!-- Hide script from older browsers

/* this function displays a message to the user within a popup window */
	function displayNote (noteData) {
		htmlCode = "<html><head><title>Version Compatibility Notes</title></head>"
		htmlCode += "<body bgcolor=\"#cccccc\">"
		htmlCode += "<font face=\"Verdana,Arial\" size=1>" + noteData + "<br /><br />"
		htmlCode += "<center>&#91; <a href=\"javascript:window.close()\">close window</a> &#93;</center></font>"
		htmlCode += "</body></html>"
		noteWindow = window.open ("","Note","width=360,height=200,resizable=yes,scrollbars=yes,status=yes")
		if (noteWindow != null) {
			noteWindow.document.open()
			noteWindow.document.write(htmlCode)
			noteWindow.document.close()
			noteWindow.focus()
		} 
	}
	
	var myimages=new Array()
			function preloadimages(){
			for (i=0;i<preloadimages.arguments.length;i++){
			myimages[i]=new Image()
			myimages[i].src=preloadimages.arguments[i]
			}
			}
		
			preloadimages("images/btn_blank.gif","images/btnSearch-off.gif","images/btnSearch-on.gif","images/btnAddItem-off.gif","images/btnAddItem-on.gif","images/btnDown-off.gif","images/btnDown-on.gif","images/btnUp-off.gif","images/btnUp-on.gif")
	
// -->