


function formHandler(form){
var URL = sites[document.form.site.options[document.form.site.selectedIndex].value].url;
open(URL);
}




function nextSite() {
document.form.picture.src = sites[document.form.site.options[document.form.site.selectedIndex].value].pic;
}

function Site(siteurl, sitename, sitepic, sitedisp) {
    this.url = siteurl;
    this.name = sitename;
    this.pic = sitepic;
}
 
var x=0;
var sites=new Array();
sites[x] = new Site("http://www.ndunlimited.com/", "ND Unlimited ", "http://www.namirdeiter.com/ndun.jpg"); x++;
sites[x] = new Site("http://yumpop.keenspace.com/", "Dealing with it", "http://www.namirdeiter.com/dwi.jpg"); x++;
sites[x] = new Site("http://www.soapylemon.com/", "You Say it First", "http://www.soapylemon.com/40x2002.jpg"); x++;
sites[x] = new Site("http://www.unlikeminerva.com", "Unlike Minerva", "http://www.unlikeminerva.com/umlinks/200x40_um1.gif"); x++;
sites[x] = new Site("http://www.sparepartscomics.com/", "Spare Parts", "http://www.sparepartscomics.com/links/200x402.jpg"); x++;
sites[x] = new Site("http://www.namirdeiter.com/", "Namir Deiter", "http://www.namirdeiter.com/linknd/40x2001.jpg"); x++;
sites[x] = new Site("http://www.groverhills.com/", "Grover Hills", "http://www.namirdeiter.com/gh.jpg"); x++;


document.write('<form name="form" target="_blank">');

document.write('<font face="arial, helvetica"><font size="-2">');

document.write('<IMG NAME="picture" SRC="http://www.namirdeiter.com/ndun.jpg"  BORDER=0 ><br>');

document.write('<select name="site" onChange=nextSite()>');    

for (var y=0; y < sites.length; y++) {
		document.write('<option value="' + y +'">' +  sites[y].name + '</option>\n');
		}

document.write('</select>');
document.write('<input type=button value="Go" onClick="javascript:formHandler()"> <br> </form></font></font>');
