var thetext1=new Array()
thetext1[0]="Nobody online? Try this!"
thetext1[1]="Chat with virtual girl Simone."
thetext1[2]="Beautiful girl dancing."
thetext1[3]="This girl will do anything 4U."
thetext1[4]="Hilarious relationship humor."
thetext1[5]="The best YouTube videos."
var thetext2=new Array()
thetext2[0]="You might want to know."
thetext2[1]="Fitness program for your body."
thetext2[2]="World latest news (BBC)."
thetext2[3]="Find out what is your IP."
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")=="newwin")
window.open(selectedopt.value)
else
window.location=selectedopt.value}
displaydesc(document.form1.select1,thetext1,'textcontainer1')
displaydesc(document.form2.select2,thetext2,'textcontainer2')
