<!--

function makeArray(n) 
{
   this.length = makeArray.arguments.length;
   for (var i = 0; i < this.length; i++)
   { 
     this[i+1] = makeArray.arguments(i);
   }
}

var Tips_Header= new makeArray;
Tips_Header[0]="<font class='priceUSD'>What is a smart battery?</font><br>";
Tips_Header[1]="<font class='priceUSD'>How do you maximize its performance?</font><br>";
Tips_Header[2]="<font class='priceUSD'>Recycle</font><br>";

var Tips_Msg = new makeArray;
Tips_Msg[0] = "Smart batteries have internal circuit boards with smart chips which allow them to communicate with the notebook and monitor its performance, output voltage and temperature.   ";
Tips_Msg[0] += "They generally run 15-20% longer and also give a much more accurate 'fuel gauge' and how much running time is left before the next recharge is required.  ";
Tips_Msg[0] += "It is time to buy a new one when the running time have declined noticeably.";

Tips_Msg[1] = "Prevent the Memory Effect:  <br><ul>-Fully charge and then fully discharge once every two to three weeks. Exceptions to the rule are Li-Ion types that do not suffer from memory effects.  <br></ul>";
Tips_Msg[1] += "Keep the pack Clean:  <br><ul>-It's a good idea to clean the contacts with a cotton swab and alcohol. This helps maintain a good connection.  <br></ul>";
Tips_Msg[1] += "Exercise the pack:  <br><ul>-Do not leave it unused for long periods of time. Run it at least once every two to three weeks.  <br></ul>";
Tips_Msg[1] += "Storage:  <br><ul>-If you don't plan on using the battery for a month or more, we recommend storing it in a clean, dry, cool place away from heat and metal objects. NiCad, NiMH and Li-Ion batteries will self-discharge during storage  <br></ul>";

Tips_Msg[2] = "Never attempt to disassemble or reassemble the pack.  Lithium-ion types or other chemicals that must be recycled or disposed of properly.";
Tips_Msg[2] += "  Nicad and NIMH types should be disposed at recycle depots.  Do NOT throw them into the trash.  ";
Tips_Msg[2] += "Be environmentally conscious.  Recycle.";

var Tips = Math.round(Math.random()*3);
if (Tips == 3) Tips=0;
var Msg_Header=Tips_Header[Tips];
var Msg_content=Tips_Msg[Tips];

function scrollit(seed) {
var m1 = "Welcome, IBI-Camcorder-Battery.com";
var m2 = " offers the best prices and";
var m3 = " the highest quality Camcorder/Digital Camera batteries with Free Shipping*";
var m4 = "";
var msg=m1+m2+m3+m4;
var out = " ";
var c = 1;
if (seed > 100) {
seed--;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0) {
for (c=0 ; c < seed ; c++) {
out+=" ";
}
out+=msg;
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) {
if (-seed < msg.length) {
out+=msg.substring(-seed,msg.length);
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else {
window.status=" ";
timerTwo=window.setTimeout("scrollit(100)",75);
}
}
}
//-->