
// isp.js - lrb - 7/10/2005, 11/27/2005, 12/12/2005

// party dress, pumpkin seed reports ..., Perfectly Matched

var isp_page = new Array(),isp_title = new Array();
var date_modified = 'Friday, January 26, 2007';

isp_page=[
'ctlife-puzzle.html',
'christmas-2006/marmalade-cat.html',
'mars-rocks!.html',
'kushner-page.html',
'tractors-rock-page.html',
'perfectly-matched.html',
'ornaments.html',
'trees.html',
'creches.html',
'stamps.html',
'sage-advice-puzzle.html',
'tapatio.html',
'view-from-restaurant.html',
'winter-cardinal.html',
'partydress.html',
'jun05-changes.html'
];

isp_title=[
'Connecticut Life',
'The Marmalade Cat',
'Mars Rocks!',
'Kushner Puzzle',
'Tractors Rock!',
'Perfectly Matched',
'Ornaments',
'Trees',
'Cr&#232;ches',
'Stamps',
'Sage Advice',         
'Tapatio',
'View from restaurant',
'Winter Cardinal',
'Party Dress',
'The Pumpkin Seed Reports - June 2005'
];      

var isps='',sel='';

isps = isps +'<FORM name="isps" ACTION="">';
isps = isps + '<table><tr>';
isps = isps + '<td>';
isps = isps +'<SELECT name="url" SIZE="3" onchange="jumpurl(this.form);">';

for (i=0; i<isp_page.length;i++) {
 if (i==0) sel=' selected'; else sel=''; 
 isps = isps  + '<OPTION VALUE="http://primepuzzle.com/' + isp_page[i] + '"' + sel + '>"' + isp_title[i] + '"</OPTION>';   
 }

isps = isps + '</SELECT>';
isps = isps + '</td>';
isps = isps + '<td>';
isps = isps + '<input type="BUTTON" VALUE="Go" onclick="jumpurl(this.form);">';
isps = isps + '</td>';
isps = isps + '</tr></table>';
isps = isps + '</FORM>';

document.write('<br><font color=red size=+1><b>Pick an "esp" from the "drop down" list below. Last changed on '+date_modified+'. There are currently '+isp_page.length+' examples.</b></font><br>'); 

document.write(isps);

