/***********************************************
* Drop down menu w/ description- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

//1) CUSTOMIZE TEXT DESCRIPTIONS FOR LINKS ABOVE
var thetext1=new Array()
thetext1[0]="Select a site from the list and click Go to visit"
thetext1[1]="GoDaddy. Top domain site with great tools for finding names. Even if you don't buy from them, great tools!"
thetext1[2]="DN Scoop domain and site valuation tool. Opens in new window."
thetext1[3]="DomainsBot keyword brainstorming tool will help you find domains based on keyphrases."
thetext1[4]="Domaining.com (Part of NamePros)"
thetext1[5]="Domain Scour. A tool that scours the web for domains."
thetext1[6]="Domain Tools - Tools for domainers."
thetext1[7]="Dot Sauce. A popular domainers' site."
thetext1[8]="The New Dotster: Buy A Domain, Get One Free! Use Coupon Code GETONEFREE"
thetext1[9]="Moniker.com - A domain registrar (May practice 'domain tasting' so be careful."
thetext1[10]="MY IP Neighbors. A tool for telling you who owns domains close to yours."
thetext1[11]="Name Bio. Get the story on any domain."
thetext1[12]="Multiple Domains? Transfer to Network Solutions"
thetext1[13]="PsychicWhoIs. One of the best tools for domain brainstorming."
thetext1[14]="Who is hosting this? Site will tell you who the host is for a domain."
thetext1[15]="Who is the owner? Tells you who owns a domain."


/// You may define additional text arrays if you have multiple drop downs:
var thetext2=new Array()
thetext2[0]="Select a domain forum from the list and click go to visit."
thetext2[1]="NamePros"
thetext2[2]="DN Forum. Good forum, but you must now pay for most features."
thetext2[3]="Digital Point"
thetext2[4]="Web Developer. Good free forum with a domain section."
thetext2[5]="HTML Forums. Free forum, less coverage than others."
thetext2[6]="Domain Forums."
thetext2[7]="Acorn Domains."
thetext2[8]="Webmaster World is a webmaster forum that offers valuable advice on web design, online marketing and domain industry."
thetext2[9]="Domain Post - a forum for domainers."
thetext2[10]="Domain State - DomainState is a domain forum that covers the latest domain news and views. DomainState covers topics on domain sales, affiliate marketing, pay per click, domain industry and other domain related news."




// Now, see 2) below for final customization step

function displaydesc(which, descriptionarray, container){
if (document.getElementById)
document.getElementById(container).innerHTML=descriptionarray[which.selectedIndex]
}

function jumptolink(what){
var selectedopt=what.options[what.selectedIndex]
if (document.getElementById && selectedopt.getAttribute("target")=="dash")
frames['dash'].location=selectedopt.value;
else
window.open(selectedopt.value)
}

//2) Call function displaydesc() for each drop down menu you have on the page
//   This function displays the initial description for the selected menu item
//   displaydesc(name of select menu, name of corresponding text array, ID of SPAN container tag):
//   Important: Remove the calls not in use (ie: 2nd line below if there's only 1 menu on your page)

displaydesc(document.form1.select1, thetext1, 'textcontainer1')
displaydesc(document.form1.select2, thetext2, 'textcontainer2')


