// JavaScript Document

<!-- // 
function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

document.write('<form id="search" name="form">');
document.write('<p>Select a month to view past Breeders of the Month</p>');
document.write('<select name="site">');
document.write('<option value="breeder_of_the_month-january.php" selected="selected">January</option>');
document.write('<option value="breeder_of_the_month-february.php">February</option>');
document.write('<option value="breeder_of_the_month-march.php">March</option>');
document.write('<option value="breeder_of_the_month-april.php">April</option>');
document.write('<option value="breeder_of_the_month-may.php">May</option>');
document.write('<option value="breeder_of_the_month-june.php">June</option>');
document.write('</select>');
document.write('&nbsp;<input type="button" class="submit" value=" View Winner " onClick="javascript:formHandler()">');
document.write('</form>');
// -->
