
// symmys.js - lrb - 6/14-15,27/2005,7/6,10/2005,12/12/2005

var symmy_page = new Array(),symmy_title = new Array();

symmy_page=[
'symmys_carvel_etc_goldbergs_ny_bagel_deli.html',
'symmys_white_swan_consignment.html',
'symmys_willard_deming_gravestones.html',
'symmys_fishin_pier_st_mary_white_statue.html',
'symmys_canon_squirrel_cat_n_mouse.html',
'symmys_at_the_falls_the_falls.html',
'newington_mallard_symmy.html',
'symmys_firehouse_no_1_united_states_post_office_06111.html',
'birthday_symmys.html',
'parsley_marigold_lady_bell_pepper_symmys.html',
'symmys-tire-sculpture-library-sculpture.html',
'jtb-house.html'
];

symmy_title=[
'Carvel etc. / Goldberg\'s NY Bagel Deli',          
'White Swan Consignment',
'Willard / Deming Gravestones',                       
'Fishin\' Pier / St. Mary White Statue!',             
'Canon Squirrel / Cat \'n\' Mouse',                         
'At The Falls / The Falls',                                     
'Newington Baseball / Mill Pond Mallard',                             
'Firehouse No 1 / United States Post Office 06111',
'Birthday Landscape / Birthday Portrait',                                     
'Parsley Marigold / Lady Bell Pepper',
'Tire Sculpture / Library Sculpture',
'Beautiful House'
];      

var symmys='',sel='';

symmys=symmys+'<FORM name="symmys" ACTION="">';
symmys=symmys+'<SELECT name="url" SIZE="3" onchange="jumpurl(this.form);">';

for (i=symmy_page.length-1;i>-1;i--) {

 if (i==symmy_page.length-1) sel=' selected'; else sel=''; 
 symmys = symmys + '<OPTION VALUE="http://primepuzzle.com/' + symmy_page[i] + '"' + sel + '>"' + symmy_title[i] + '"</OPTION>';   

 }

symmys=symmys+'</SELECT>';
symmys=symmys+'<input type="BUTTON" VALUE="Go" onclick="jumpurl(this.form);">';
symmys=symmys+'</FORM>';

document.write('<br><font color=red size=+1><b>Pick a symmy from the "drop down" list below.</b></font><br>'); 

document.write(symmys);

