writeAffiliates();

function writeAffiliates() {
    document.write('<select name="drop" onChange="if (this.selectedIndex >0) window.parent.location=this.options[this.selectedIndex].value">');
    document.write('<OPTION SELECTED>Sites affilies</OPTION>');
    
    document.write('<OPTION value="http://www.theahl.com/">AHL</OPTION>');
    document.write('<OPTION value="http://www.nhl.com/">NHL</OPTION>');
    document.write('<OPTION value="http://www.nhlpa.com/">NHLPA</OPTION>');

    document.write('<OPTION value="#">---------------</OPTION>');

    document.write('<OPTION value="http://www.tsn.ca/">TSN</OPTION>');
    document.write('<OPTION value="http://www.rds.ca/">RDS</OPTION>');
    document.write('<OPTION value="http://www.sportsline.com/">CBS Sportsline</OPTION>');
	document.write('<OPTION value="http://www.hockeysfuture.com/">Hockey\'s future</OPTION>');
    document.write('<OPTION value="#">---------------</OPTION>');

    document.write('<OPTION value="http://www.goaliesarchive.com/">The Goalies Archive</OPTION>');
    document.write('<OPTION value="#">---------------</OPTION>');

    document.write('<OPTION value="http://www.hockeydb.com/">HockeyDB</OPTION>');
    document.write('</select>');
}