// JavaScript Document var data;  function participantIcon(pageObject, imageName, rolloverText) {	this.pageObject = pageObject;	this.imageName = imageName;	this.rolloverText = rolloverText;}function rolloverText(text, id) {//var id = 'dShedPage';var theText = "benjamin";if (document.getElementById) {		x = document.getElementById(id);		x.innerHTML = '';		x.innerHTML = text;} else if (document.all) {		x = document.all[id];		x.innerHTML = text;} else if (document.layers) {		x = document.layers[id];		text2 = '<P CLASS="testclass">' + text + '</P>;';		x.document.open();		x.document.write(text2);		x.document.close();	}}function openPopupWindow(theURL,winName) {  window.open(theURL,winName,'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=400,height=400');  }