<!--
function over(id,Col) {

var bg1 = '#CC0000';
var bg2 = '#006600';
var bg3 = '#0033FF';
var bg4 = '#9933CC';
var bg5 = '#FF6600';
var bg6 = '#336699';
var bg7 = '#993300';
var bg8 = '#FFCC00';

var bgCol = eval ('bg' + Col);

    if (document.layers) {	
        	window.document.layers[id].bgColor = bgCol; 
    }
	
    else if (document.all) {		
        	window.document.all[id].style.background = bgCol; 							
    }
}


function out(id) {

var bgOld = '#000033'

    if (document.layers) {		
        	window.document.layers[id].bgColor = bgOld;
	}		
	
    else if (document.all) {		
	        window.document.all[id].style.background = bgOld;
	}
}


function findTopic(theForm) {
self.location = theForm.options[theForm.selectedIndex].value;
}


function navValidate(theForm) {

  if (theForm.qu.value == "") {
    alert("Please enter something to search for.");
    theForm.qu.focus();
    return (false);
  }

  return (true);
}


function emailCheck(theForm) {

var eml = theForm.email.value;
iChars = " *|,\":<>[]{}`\';()&$#!%";

	if (eml == 'your@email.here') {
		alert('That is not a valid email address');
		return false;
	}
			
	if (eml.indexOf('@')<2) {
		alert('That is not a valid email address');
		return false;			
	}
	
	if (eml.indexOf('.')<1) {
		alert('That is not a valid email address');
		return false;			
	}
					
	for (var i = 0; i < eml.length; i++) {
		if (iChars.indexOf(eml.charAt(i)) != -1) {
			alert('That is not a valid email address');	
			return false;					
		}
	}		
	return true;			
}

function clearBox(theForm) {

eml = theForm.email.value

	if (eml == 'your@email.here') {
		theForm.email.value = ""
	}
}

function quickFinder() {
	document.write("<table border='0' cellpadding='3' cellspacing='0' width='120'>");
	document.write("<tr>");
	document.write("<td align='center' bgcolor='#000033'><font face='Verdana, Helvetica, Arial, sans-serif' size='1' color='#FFFFFF'>Quick Finder</font></td>");
	document.write("</tr>");
	document.write("<tr>");
	document.write("<td align='center' bgcolor='#333366'>");				
	document.write("<font face='Verdana, Helvetica, Arial, sans-serif' size='1'>");
	document.write("<select name='topicList' onChange='findTopic(this)' size='1' style='font-family: Verdana; font-size: 9'>");
	document.write("<option value='#'> </option>");
	document.write("<option value='/'>Home Page</option>");
	document.write("<option value='/community/discussion/default.asp'>Discussion</option>");
	document.write("<option value='/community/chat/default.asp'>Live Chat</option>");
	document.write("<option value='/charts/top75singles.asp'>Top 75 Singles</option>");
	document.write("<option value='/charts/top75albums.asp'>Top 75 Albums</option>");
	document.write("<option value='/reviews/futurehits/'>Future Hits</option>");
	document.write("<option value='/artists/top20.asp'>Top 20 Artists</option>");
	document.write("<option value='/artists/atoz.asp'>Artists A-Z</option>");	
	document.write("<option value='/glastonbury/'>Glastonbury 99</option>");	
	document.write("<option value='/news/lostinmusic/'>Lost In Music</option>");							
	document.write("</select>");
	document.write("</font>");
	document.write("</td>");	
	document.write("</tr>");	
	document.write("<tr>");			
	document.write("<td bgcolor='#333366'></td>");	
	document.write("</tr>");	
	document.write("</table>");					
}

function backButton() {

document.write("<a href='javascript:history.back()'><img src='/graphics/back.gif' width=9 height=9 alt='BACK' border='0'></a>");

}

function lineOne() {

var origin = location.search;

if (origin == "?ref=lineone") {
	document.write("<a href='http://www.lineone.net/entertainment/dotmusic_news.html'><img src='/graphics/misc/lineone.gif' width=127 height=43 border=0 alt='Click to go back to LineOne'></a>")
	}
}

//-->

	  			
		
	    
	  