function LinkUp()
{
	var number = document.DropDown.DDlinks.selectedIndex;
	location.href = document.DropDown.DDlinks.options[number].value;
}
document.write('<div align="center">');
document.write('<hr class="sec" />');
document.write('<form name="DropDown">');
document.write('<select name="DDlinks">');
document.write('<option selected value=none>--&gt; Other Places &lt;--');
document.write('<option value="6x2ml.php"> Main Menu </option>');
document.write('<option value="warngloss.php"> Warning/Rating Glossary </option>');
document.write('<option value="library.php"> Library - Listed By Author </option>');
document.write('<option value="ficlist.php"> Library - All Fiction Listed </option>');
document.write('<option value="gallery.php"> Gallery </option>');
document.write('<option value="doujinshi.php"> Doujinshi </option>');
document.write('<option value="recommend.php"> Recommendations </option>');
document.write('</select>');
document.write('<input type="BUTTON" value="Click to Go!" onclick="LinkUp()">');
document.write('</form>');
document.write('</div>');
