function switchNav (pname, action) {
	if (action == "a") {
		document.getElementById(''+pname+'').src = "/d/pict/navpics/"+pname+"_a.gif";
	}// if
	else if (action == "na") {
		document.getElementById(''+pname+'').src = "/d/pict/navpics/"+pname+".gif";
	}// else if
}// switchNav    http://www.mycokemusic.ch/content/soundcheck/2006/profile.aspx?sid=14583,1,27


function showpopup(aSrc, aWidth, aHeight, aTitle) { 
			picwin=window.open("","PicWindow","width="+aWidth+",height="+aHeight+",menubar=no,locationbar=no,resizable=no,status=no,scrollbars=no");
			with (picwin.document) {
				open();
				writeln("<html><head><title>"+aTitle+"</title>");
				writeln("<style type='text/css'>a {text-decoration:none;font-weight:bold;font-style:italic;color:#fff;background-color:#000}");
				writeln("img {border:0px;}</style>");
				writeln("</head><body leftmargin=0 topmargin=0>");
				writeln("<div style='position:absolute; left:0; top:0; border:0px;'>");
				writeln("<a href='javascript:self.close()'>");
				writeln("<img border=0 style='border:0px;' alt='' src='"+aSrc+"' width="+aWidth+" height="+aHeight+"></a></div>");
				writeln("</body></html>");
				close();
			}
		}