function showhide(node){			theNode = document.getElementById(node);						if(theNode.className=='invisible'){				theNode.className='visible';				}			else{				theNode.className='invisible';				}								}			function showPic (imageSelect, imgwidth, imgheight, line0, line1, line2) {	if (document.getElementById) {		document.getElementById('artistimage').src = imageSelect.href;		document.getElementById('artistimage').width = imgwidth;		document.getElementById('artistimage').height = imgheight;		document.getElementById('imgholder').style.width=imgwidth+10+'px';				if (line0) {			document.getElementById('line0').childNodes[0].nodeValue = line0;		}		if (line1) {			document.getElementById('line1').childNodes[0].nodeValue = line1;		}				if (line2) {			document.getElementById('line2').childNodes[0].nodeValue = line2;		}			return false;	}	else {		return true;		}	}	function popup(link)  {	pop_up = window.open(link, "secondary_window", "width=400,height=400,resizable=yes,scrollbars=yes,location=no");		}	