function switcher(fileName)
{
	switch (fileName){   
	
		case 'HouseOfCards' : 
			document.write("&quot;House of Cards&quot;<BR><SPAN STYLE='FONT-SIZE:15PX'>Steve Lynch &amp; Network 23</SPAN><BR><span style='font-size:10px'>&copy;1993 Lynch Mob Music. All rights reserved.</span>");
			break;
		case 'LiquidEyes' : 
			document.write("&quot;Liquid Eyes&quot;<BR><SPAN STYLE='FONT-SIZE:15PX'>Steve Lynch &amp; Network 23</SPAN><BR><span style='font-size:10px'>&copy;1993 Lynch Mob Music. All rights reserved.</span>");
			break;
		case 'OriginalSin' : 
			document.write("&quot;Original Sin&quot;<BR><SPAN STYLE='FONT-SIZE:15PX'>Steve Lynch &amp; Network 23</SPAN><BR><span style='font-size:10px'>&copy;1993 Lynch Mob Music. All rights reserved.</span>");
			break;
		case 'ShowYourself' : 
			document.write("&quot;Show Yourself&quot;<BR><SPAN STYLE='FONT-SIZE:15PX'>Steve Lynch &amp; Network 23</SPAN><BR><span style='font-size:10px'>&copy;1993 Lynch Mob Music. All rights reserved.</span>");
			break;
		case 'WhenImGone' : 
			document.write("&quot;When I'm Gone&quot;<SPAN STYLE='FONT-SIZE:15PX'><BR>Autograph</SPAN><BR><span style='font-size:10px'>from the RCA release <em>Loud and Clear</em>, 1987</span>");
			break;
		case 'hammerhead' : 
			document.write("&quot;Hammerhead&quot;<SPAN STYLE='FONT-SIZE:15PX'><BR>Autograph</SPAN><BR><span style='font-size:10px'>from the RCA release <em>That's The Stuff</em>, 1985</span>");
			break;
		case 'prisoners' : 
			document.write("&quot;Take No Prisoners&quot;<SPAN STYLE='FONT-SIZE:15PX'><BR>Autograph</SPAN><BR><span style='font-size:10px'>from the RCA release <em>Sign In Please</em>, 1985</span>");
			break;
		case 'blondes' : 
			document.write("&quot;Blondes in Black Cars&quot;<SPAN STYLE='FONT-SIZE:15PX'><BR>Autograph</SPAN><BR><span style='font-size:10px'>from the RCA release <em>That's The Stuff</em>, 1985</span>");
			break;
		case 'loud' : 
			document.write("&quot;Loud and Clear&quot;<SPAN STYLE='FONT-SIZE:15PX'><BR>Autograph</SPAN><BR><span style='font-size:10px'>from the RCA release <em>Loud and Clear</em>, 1987</span>");
			break;
		case 'send' : 
			document.write("&quot;Send Her To Me&quot;<SPAN STYLE='FONT-SIZE:15PX'><BR>Autograph</SPAN><BR><span style='font-size:10px'>from the RCA release <em>Sign In Please</em>, 1985</span>");
			break;
		case 'never' : 
			document.write("&quot;She Never Looked That Good For Me&quot;<SPAN STYLE='FONT-SIZE:15PX'><BR>Autograph</SPAN><BR><span style='font-size:10px'>from the RCA release <em>Loud and Clear</em>, 1987</span>");
			break;
		case 'take' : 
			document.write("&quot;All I'm Gonna Take&quot;<SPAN STYLE='FONT-SIZE:15PX'><BR>Autograph</SPAN><BR><span style='font-size:10px'>from the RCA release <em>Sign In Please</em>, 1985</span>");
			break;
		case 'angela' : 
			document.write("&quot;Angela&quot;<SPAN STYLE='FONT-SIZE:15PX'><BR>Autograph</SPAN><BR><span style='font-size:10px'>from the RCA release <em>Loud and Clear</em>, 1987</span>");
			break;
		case 'angel' : 
			document.write("&quot;Angel In Black&quot;<SPAN STYLE='FONT-SIZE:15PX'><BR>Autograph</SPAN><BR><span style='font-size:10px'>from the RCA release <em>Loud and Clear</em>, 1987</span>");
			break;
		case 'radio' : 
			document.write("&quot;Turn Up The Radio&quot;<SPAN STYLE='FONT-SIZE:15PX'><BR>Autograph</SPAN><BR><span style='font-size:10px'>from the RCA release <em>Sign In Please</em>, 1985</span>");
			break;
		case 'stuff' : 
			document.write("&quot;That's the Stuff&quot;<SPAN STYLE='FONT-SIZE:15PX'><BR>Autograph</SPAN><BR><span style='font-size:10px'>from the RCA release <em>That's The Stuff</em>, 1985</span>");
			break;	
		default : 
			document.write("What in hell are you looking for?<br><br>No such file exists!!!");
			break;
	}
}
