writePlayers();

function writePlayers() {
    document.write('<form>');    document.write('<select name="drop" onChange="if (this.selectedIndex >0) window.parent.location=this.options[this.selectedIndex].value">');    document.write('<OPTION SELECTED>NHL Player Sites</OPTION>');    document.write('<OPTION value="http://crosby87.com/web/guest/home">Sidney Crosby</OPTION>');    document.write('<OPTION value="http://www.belfour.com">Ed Belfour</OPTION>');    document.write('<OPTION value="http://www.raffitorres.com">Raffi Torres</OPTION>');    document.write('<OPTION value="http://www.kevinweekes.com">Kevin Weekes</OPTION>');    document.write('</select>');    document.write('</form>');
}
