<!-- SOUND FRAME CODE
// NOTES:
// 1. If you use a ' add a slash before it like this \'
// 2. ONLY USE lowercase FOR ALL OPTIONS
// 3. CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON




var showicon	="yes"		// SHOW MP3 ICON
var showmin	="yes"		// SHOW MINIMIZE BUTTON
var showclose	="yes"		// SHOW CLOSE BUTTON




// COPYRIGHT 2010 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE




document.write('<table cellpadding="0" cellspacing="0" border="0"><tr><td valign="middle">');

   if (showicon == "yes") {
document.write('<img src="mp3.gif" alt="Mp3"><br>');
document.write('</td><td valign="middle">');
		}
   if (showmin == "yes") {
if (navigator.userAgent.indexOf('Netscape') != -1)
{
document.write('');
}
else {
document.write('<a href="#" onclick="HideFrame();" target="_self"><img src="minimize.gif" alt="Minimize" hspace="2" border="0"></a><br>');
document.write('</td><td valign="middle">');
}
}
   if (showclose == "yes") {
document.write('<a href="javascript:CloseFrame();"><img src="close.gif" alt="Close" hspace="2" border="0"></a><br>');
document.write('</td><td valign="middle">');
}
else {
document.write('');
}

document.write('<img src="../picts/spacer.gif" width="3" height="35" border="0" alt="image"><br>');

document.write('</td></tr></table>');



//-->
