<!--// pop up windowsfunction openFish(windowname) {	msgWindow=window.open (windowname,"fishWindow","toolbar=no,menubar=no,resizable=no,scrollbars=yes,width=350,height=290,left=200,top=200");}// toggle visibility - snatched from zeldman.comfunction toggle( targetId ){  if (document.getElementById){  		target = document.getElementById( targetId );  			if (target.style.display == "none"){  				target.style.display = "";  			} else {  				target.style.display = "none";  			}  	}}// Rolloverfunction WM_imageSwap(daImage, daSrc){  var objStr,obj;  // Check to make sure that images are supported in the DOM.  if(document.images){    // Check to see whether you are using a name, number, or object    if (typeof(daImage) == 'string') {      // This whole objStr nonesense is here solely to gain compatability      // with ie3 for the mac.      objStr = 'document.' + daImage;      obj = eval(objStr);      obj.src = daSrc;    } else if ((typeof(daImage) == 'object') && daImage && daImage.src) {      daImage.src = daSrc;    }  }}// -->