<html><div style='background-color:'><DIV>
<P>First, define a new variable in your arrays (link#[3]="image path"). Then you would create a spacer image and place it on your page (&lt;img src="images/spacer.gif" name="imgLogo" id="imgLogo"&gt;). To change the image you would call it in the js (document.imgLogo.src=eval("link"+ num + "[3]")). There's a little more to it but this should give you what you need to get going. You might also consider placing your description and site titles in DIV tags on the page instead of in a TEXTAREA and TEXT fields (That will require some research).</P>Cutter<BR></DIV>
<P><A href="http://www.falcon-knives.com/">Falcon Knives</A> </P>
<P>&nbsp;</P>
<DIV></DIV>
<DIV></DIV>
<DIV></DIV>----Original Message Follows---- 
<DIV></DIV>From: "arb" <ARB@ANDYS-SCRIBBLINGS.CO.UK>
<DIV></DIV>Reply-To: javascript@LaTech.edu 
<DIV></DIV>To: <JAVASCRIPT@LATECH.EDU>
<DIV></DIV>Subject: [Javascript] Adding Picture 
<DIV></DIV>Date: Mon, 24 Sep 2001 20:58:41 +0100 
<DIV></DIV>
<DIV></DIV>My java writing ability amounts to nothing. This script was modified for me by SnarfLT who recommended this list for further modifications. I wish to have a variable sized jpeg or gif displayed, next to the descriptive text, which would be different depending on the site selected. This, as an explanation, will be the company logo. The full page can be seen at http://www.andys-scribblings.co.uk/linkstest.html 
<DIV></DIV>
<DIV></DIV>
<DIV></DIV>
<SCRIPT>
</DIV><!--
</DIV>/* */
</DIV>/* written by "Snarf" (snarflt@aol.com) */
</DIV>/* */
</DIV>
</DIV>// Start Links
</DIV>var link0 = new Array()
</DIV>link0[0]="-- Select --";
</DIV>link0[1]="Address will be shown here, click the 'Go' button";
</DIV>link0[2]="Choose a website from the list on the left, and detailes of the retailer and the wines it sells will be displayed here.\n\nScript written by 'Snarf' (snarflt@aol.com)";
</DIV>var link1 = new Array()
</DIV>link1[0]="ChateuOnline";
</DIV>link1[1]="http://affiliation.chateauonline.com/uk/Tracking/clic.asp?partner=ChateauOnline&p1=N%3Aa%E1&p2=N%3Aca&p3=N7íw/";
</DIV>link1[2]="A fine selection of wines from the world over. Nicely designed site with plenty of `click` options. Loads of choice from everyday `quaffers` through to choice connoisseur bottles. Lots of pre-mixed cases, well-known producers mixed with choice exclusives. Food matching and cellaring tips complete good tasting notes. The only thing that annoyed me was that most of the wines must be brought in either cases of 3 or 6. But some bottles can be purchased individually.";
</DIV>var link2 = new Array()
</DIV>link2[0]="Allez Vins!";
</DIV>link2[1]="http://www.allezvins.co.uk/";
</DIV>link2[2]="Interesting and quality wines are the mainstay here. Established in 1987 Allez Vins! specialises in small domaines from the lesser known regions of France. Cahors and Madiran are particularly strong with some lovely wines from Bergerac, Gascony and the Rhone and Loire. The website is brimming with enthusiasm and exudes a passion for the wines. Well worth checking out. No minimum purchase, delivery per order £6.50.";
</DIV>var link3 = new Array()
</DIV>link3[0]="WineSmart";
</DIV>link3[1]="http://www.qksrv.net/click-908807-5341780/";
</DIV>link3[2]="I have had some great wines from this European based company. They concentrate on New World wines that have little distribution in the UK. But they ship throughout Europe. Quality wines from California, New Zealand, Australia and everywhere else too. There are a smattering of choice wines from Europe as well. The site is very easy to use with plenty of information and choice. No minimum delivery. The postal charge varies depending on country.";
</DIV>var link4 = new Array()
</DIV>link4[0]="World Marachel";
</DIV>link4[1]="http://www.worldmarechal.com/marechal/uk/pub/lien_externe_uk.cfm?choix=boutique/boutique.cfm&affilie=scribblings";
</DIV>link4[2]="A French based company so obviously concentrating on all things French. There is an added `food` dimension to this site with plenty of tasty treats and specialist foods through to complete dishes to match with the wine offerings. Although strong on France there are a smattering of wines from Australia, Spain, California and elsewhere.";
</DIV>var link5 = new Array()
</DIV>link5[0]="number 5";
</DIV>link5[1]="Address will be shown here, click the 'Go' button";
</DIV>link5[2]="Choose a website from the list on the left, and detailes of the retailer and the wines it sells will be displayed here.\n\nScript written by 'Snarf' (snarflt@aol.com)";
</DIV>
</DIV>// define the variable numLinks[0] with the number of links you have above. In this case the last defined link above is link4, so we have 4 links.
</DIV>// make sure there is the same amount of <OPTION> tags as there are links, each with the numerical value corresponding to the link that will go there
</DIV>var numLinks=new Array()
</DIV>numLinks[0]="5"
</DIV>
</DIV>// Create the Select List
</DIV>function firstLoad() {
</DIV>for (i=0;i<=numLinks[0];i++) {
</DIV>document.links.elements[0].options[i].value=i
</DIV>document.links.elements[0].options[i].text=eval("link"+ i +"[0]")
</DIV>}
</DIV>document.notes.elements[0].value=link0[0]
</DIV>document.links.elements[1].value=link0[1]
</DIV>document.links.elements[4].value=link0[2]
</DIV>}
</DIV>
</DIV>function changeLink(num) {
</DIV>if (num <= numLinks[0]) {
</DIV>document.notes.elements[0].value=eval("link"+ num +"[0]")
</DIV>document.links.elements[1].value=eval("link"+ num +"[1]")
</DIV>document.links.elements[4].value=eval("link"+ num +"[2]")
</DIV>}
</DIV>}
</DIV>
</DIV>function goLink(linkAddress,selected) {
</DIV>if (selected > "0") {
</DIV>window.open("" + linkAddress + "", "Window", ['width=150,height=200,toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1'])
</DIV>}
</DIV>}
</DIV>
</DIV>function tastingNotes(selected) {
</DIV>if (selected > "0") {
</DIV>document.notes.submit()
</DIV>}
</DIV>}
</DIV>//-->
</DIV></SCRIPT>

<DIV></DIV>
<SCRIPT language=JavaScript1.2 type=text/javascript>
</DIV>var bookmarkurl="http://www.andys-scribblings.co.uk"
</DIV>var bookmarktitle="Andy's Scribblings- Weekly drinks newsletter"
</DIV>function addbookmark(){
</DIV>if (document.all)
</DIV>window.external.AddFavorite(bookmarkurl,bookmarktitle)
</DIV>}
</DIV></SCRIPT>

<DIV></DIV>
<DIV></DIV>
<DIV></DIV>
<FORM name=links>
<DIV></DIV>
<TABLE cellSpacing=2 cellPadding=0 width=150 bgColor=#c8bca0 border=2 cellborder="2">
<DIV></DIV>
<TBODY>
<TR>
<TH colSpan=2>
<P class=title>Scribblings Recommended Sites</P></TH></TR>
<DIV></DIV>
<TR>
<TD rowSpan=2>
<DIV></DIV><SELECT id=list onchange=changeLink(this.selectedIndex) size=5 name=list> <OPTION value=0 selected>-----------------------<OPTION value=1><OPTION value=2><OPTION value=3><OPTION value=4><OPTION value=5></OPTION></SELECT> 
<DIV></DIV></TD>
<TD>
<DIV></DIV><INPUT type=hidden size=46 name=addr> 
<DIV></DIV>
<CENTER>
<DIV></DIV><NOBR>
<DIV></DIV><INPUT style="BACKGROUND: #fff8dc" onclick=goLink(document.links.addr.value,document.links.list.selectedIndex) type=button value="Go to Site" name=Go> 
<DIV></DIV><INPUT style="BACKGROUND: #fff8dc" onclick=tastingNotes(document.links.list.selectedIndex) type=button value="Tasting Notes" name=submit> 
<DIV></DIV></NOBR>
<DIV></DIV></CENTER>
<DIV></DIV></TD></TR>
<TR>
<TD>
<DIV></DIV><TEXTAREA name=desc rows=8 readOnly cols=39></TEXTAREA> 
<DIV></DIV></FORM>
<DIV></DIV>
<CENTER>
<FORM name=notes action=http://search.atomz.com/search/ method=get>
<DIV></DIV><!-- change the sp-q tag to hidden instead of text -->
<DIV></DIV><INPUT value=--Select-- name=sp-q> 
<DIV></DIV><INPUT type=hidden value=000130e8-sp00000000 name=sp-a> 
<DIV></DIV></FORM></CENTER>
<DIV></DIV></TD></TR></TBODY></TABLE>
<DIV></DIV>
<CENTER></CENTER>
<DIV></DIV>
<DIV></DIV>
<DIV></DIV>Andrew Barrow 
<DIV></DIV>Scribblings: weekly wine and drink email newsletter 
<DIV></DIV>[w] : http://www.andys-scribblings.co.uk 
<DIV></DIV>[m] : arb@andys-scribblings.co.uk 
<DIV></DIV></div><br clear=all><hr>Get your FREE download of MSN Explorer at <a href='http://go.msn.com/bql/hmtag_itl_EN.asp'>http://explorer.msn.com</a><br></html>