//1) TEXT DESCRIPTIONS FOR MOBILES 

var handys_nokia=new Array()
handys_nokia[0]="3100, 3105, 3108, 3120, 3125, 3200, 3205, 3300, 5100, 6100, 6108, 6200, 6220, 6225, 6585, 6610, 6610i, 6800, 7200, 7250, 7250i, 7210, 6225, 6650, 3205, 7600, 6651, 6820, 6810, 3510i, 3530, 3585i, 3586, 3586i, 3587, 3587i, 3595, 6010, 6012, 6015, 6015i, 8910i, 6230, 5140, 3220, 7260, 6170, 7270, 6255"
handys_nokia[1]="3650, 3600, 3620, 3660, 7650, N-Gage, QD, 6600,6620(+), 6260(+), 6670(+), 7610(+), 6630(+)"

var handys_siemens=new Array()
handys_siemens[0]="S55, C60, SL55, M55, MC60, S56, S57, SL50, SL56, M56, M57, MC60, MC66, A65"
handys_siemens[1]="SX-1"
handys_siemens[2]="CX65(+), C65(+), M65(+), S65(+), CXT65(+), CXV65(+), CX66(+), CX70(+), M65(+), M6V(+), M6C(+), S65(+), S6V(+), S6C(+), S66(+), SK65(+), C65(+), CT65(+), CV65(+), C66(+), CT66(+), CV66(+), SL65(+)"

var handys_sony=new Array()
handys_sony[0]="T610, T616, T637, T618, T628, T630, Z600, Z608"
handys_sony[1]="K500i, K700i,Z1010, K500x, Z500x, F500x, K700x, S700i, S700x, S710x"
handys_sony[2]="V800i(+), Vodafone V802SE(+)"
handys_sony[3]="P900"
handys_sony[4]="P910i(+), P910X(+)"

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
}
//2) Call function displaydesc() for each drop down menu you have on the page
displaydesc(document.form1.select1, handys_nokia, 'textcontainer1')
displaydesc(document.form2.select2, handys_siemens, 'textcontainer2')
displaydesc(document.form2.select2, handys_sony, 'textcontainer3')