<!--

/*
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>M2500 Bar Code Decoder</b> and <b>Metrologic MS9520 Laser Scanner</b>'
content[1]='<b>M2500 Bar Code Decoder</b> and <b>PSC QuickScan 6000 Laser Scanner</b>'
content[2]='<b>M2500 Bar Code Decoder</b> and <b>PSC PowerScan Laser Scanner</b>'
content[3]='<b>M2500 Bar Code Decoder</b> and <b>AML MT 6023, 2.5 inch CCD Scanner</b>'
content[4]='<b>M2500 Bar Code Decoder</b> and <b>6 MIL, VR, 9 pin Wand Scanner</b>'
content[5]='<b>M2500 Bar Code Decoder</b> and <b>Dual Track 1 &amp; 2 MSR</b>'
content[6]='<b>M2500 Bar Code Decoder</b> and <b>6 MIL, VR, 9 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]='$229.00'
price[1]='$349.00'
price[2]='$599.00'
price[3]='$249.00'
price[4]='$129.00'
price[5]='$149.00'
price[6]='$159.00'


function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
appear()
setTimeout("window.onresize=regenerate",450)
}
}

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'
}

window.onload=regenerate2


//-->