function popupContact(URL) {
	popupWin = window.open('http://snackrecords.com/cgi-bin/snackmail.pl?recipient=snackrecords','contact','width=440,height=510,left=20,top=20,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0');
	popupWin.focus();
}

function copyright() {
	document.write('<span class="fineprint">&#169; 2009 Snack Records</span>');
}

function navbarTop(thisPage) {
	var Section = new Array();
	Section = ["catalog","gallery","reviews","about","contact"];
	var str;
	str = '<style type="text/css"> \
tr#navrow { \
	text-align: center; \
} \
tr#navrow td a { \
	display: block: \
	font-color: #00ff00; \
	font-size: 12px; \
	font-family: Arial, Helvetica, sans-serif; \
	font-weight: bold; \
	text-decoration: none; \
	margin: 0em; \
	border: 1px solid #000000; \
	padding: 1px 8px 1px 8px; \
} \
tr#navrow td a:hover { \
	text-decoration: underline; \
} \
tr#navrow td a:active { \
	border-color: #ffffff; \
	background-color: #999999; \
	color: #ffffff; \
} \
';

for (i=0; i<Section.length; i++) {
	if (Section[i] == thisPage) {
		str = str + '#' + Section[i] + ' a:visited { color: #ffffff; text-decoration: underline; };';
	}
}

str = str + '</style> \
<div style="width: 700px; background-color: #000000; padding-bottom: 10px;"><a href="http://snackrecords.com/home/" target="_top"><img src="http://snackrecords.com/img/snack_records_lucidux.jpg" border="0" width="400" height="38" alt="Snack Records"></a> \
<table border="0" width="440" cellpadding="5" cellspacing="0"> \
<tr id="navrow"> \
<td id="catalog"><a href="http://snackrecords.com/catalog" target="_top">Catalog</a></td> \
<!-- <td id="gallery"><a href="http://snackrecords.com/gallery" target="_top">Gallery</a></td> --> \
<!-- <td id="shows"><a href="http://snackrecords.com/shows" target="_top">Shows</a></td> -->\
<td id="reviews"><a href="http://snackrecords.com/artists/mosaic/reviews" target="_top">Reviews</a></td> \
<td id="about"><a href="http://snackrecords.com/about" target="_top">About Us</a></td> \
<td id="contact"><a href="http://snackrecords.com/contact">Contact</a></td> \
</tr> \
</table> \
<hr width="500"> \
</div> \
';
document.write(str);
}

