<!--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;    }  }}var newWindow = null;function closeWin(){	if (newWindow != null){		if(!newWindow.closed)			newWindow.close();	}}function popUpWin(url, type, strWidth, strHeight){		closeWin();		if (type == "fullScreen"){		strWidth = screen.availWidth - 10;		strHeight = screen.availHeight - 160;	}		var tools="";	if (type == "standard" || type == "fullScreen") tools = "resizable,toolbar=yes,location=yes,scrollbars=yes,menubar=yes,width="+strWidth+",height="+strHeight+",top=0,left=0";	if (type == "console") tools = "resizable,toolbar=no,location=no,scrollbars=no,width="+strWidth+",height="+strHeight+",left=0,top=0";	newWindow = window.open(url, 'newWin', tools);	newWindow.focus();}function openVid(windowname) {	msgWindow=window.open (windowname,"vidWindow","toolbar=no,menubar=no,resizable=no,scrollbars=no,width=375,height=300");}function openDetail2(windowname) {	msgWindow=window.open (windowname,"Detail2Window","toolbar=no,menubar=no,resizable=no,scrollbars=no,width=525,height=450");}// -->