<!--

/*
Textual Tooltip Script- 
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/


var content=new Array()
//change the array below to the text associated with your links Expand or contract the array, depending on how many links you have
content[0]='<b>M2000 Bar Code Decoder</b> and <b>Metrologic MS9520 Laser Scanner</b>'
content[1]='<b>M2000 Bar Code Decoder</b> and <b>PSC QuickScan 6000 Laser Scanner</b>'
content[2]='<b>M2000 Bar Code Decoder</b> and <b>PSC PowerScan Laser Scanner</b>'
content[3]='<b>M2000 Bar Code Decoder</b> and <b>Symbol LS 2100 Laser Scanner</b>'
content[4]='<b>M2000 Bar Code Decoder</b> and <b>Symbol LS 4000 Laser Scanner</b>'
content[5]='<b>M2000 Bar Code Decoder</b> and <b>AML MT 6023, 2.5 inch CCD Scanner</b>'
content[6]='<b>M2000 Bar Code Decoder</b> and <b>Opticon, 2.3 inch CCD Scanner</b>'
content[7]='<b>M2000 Bar Code Decoder</b> and <b>Opticon, 3.2 inch CCD Scanner</b>'
content[8]='<b>M2000 Bar Code Decoder</b> and <b>Champ, 7 mil., VR, 5 pin Wand Scanner</b>'
content[9]='<b>M2000 Bar Code Decoder</b> and <b>Opticon, 6 mil., VR, 5 pin Wand Scanner</b>'
content[10]='<b>M2000 Bar Code Decoder</b> and <b>AML 1100T, 6 mil., VR, 5 pin Slot Reader</b>'
content[11]='<b>M2000 Bar Code Decoder</b> and <b>Opticon, 6 mil., VR, 5 pin Slot Reader</b>'


var price=new Array()
//change the array below to the text associated with your links Expand or contract the array, depending on how many links you have
price[0]='$259.00'
price[1]='$459.00'
price[2]='$659.00'
price[3]='$499.00'
price[4]='$659.00'
price[5]='$249.00'
price[6]='$319.00'
price[7]='$339.00'
price[8]='$249.00'
price[9]='$339.00'
price[10]='$219.00'
price[11]='$349.00'


function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
appear()
setTimeout("window.onresize=regenerate",470)
}
}

function changetext(whichcontent){

if (document.all||document.getElementById){
cross_el=document.getElementById? document.getElementById("descriptions"):document.all.descriptions
cross_el.innerHTML='<font class="f8">'+content[whichcontent]+'</font>'
cross_el=document.getElementById? document.getElementById("prices"):document.all.descriptions
cross_el.innerHTML='<font class="f10bold">'+price[whichcontent]+'</font>'

}
else if (document.layers){
document.d1.document.d2.document.write('<font class="f8">'+content[whichcontent]+'</font>')
document.d3.document.d4.document.write('<font class="f10bold">'+price[whichcontent]+'</font>')
document.d1.document.d2.document.close()
document.d3.document.d4.document.close()
}

}

function appear(){
document.d1.visibility='show'
document.d2.visibility='show'
document.d3.visibility='show'
document.d4.visibility='show'
}

window.onload=regenerate2


//-->