function setAOTM() {window.status='Arts On The Move';return true;}function createNew(commentURL) {		top.name = "artswindow";		var windowName = 'comments';		var popup = window.open(commentURL,windowName,'toolbar=0,scrollbars=yes,location=0,directories=0,status=1,menubar=0,alwaysRaised=1,resizable=1,width=450,height=400,screenX=50,screenY=50');	 // set the opener if it's not already set.  it's set automatically	// in netscape 3.0+ and ie 3.0+.		if( navigator.appName.substring(0,8) == "Netscape" )	{				popup.location = commentURL;		popup.opener = self;	}			}function displaymenu(object) {	if (document.layers && document.layers[object] != null)		document.layers[object].display = 'block';		if (document.all)		document.all[object].style.display = 'block';		if (document.getElementById)		document.getElementById(object).style.display = "block";	}function hidemenu(object) {	if (document.layers && document.layers[object] != null)		document.layers[object].display = 'none';		if (document.all)		document.all[object].style.display = 'none';		if (document.getElementById)		document.getElementById(object).style.display = "none";	}function togglemenu(object) {	togglestatus = eval(object+"status");	if (togglestatus == 0) {		displaymenu(object);		window[object+"status"] = 1;		}		else if (togglestatus == 1) {		hidemenu(object);		window[object+"status"] = 0;		}	}