browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
ns3up = (browserName == "Netscape" && browserVer >= 3);
ie4up = (browserName.indexOf("Microsoft") >= 0 && browserVer >= 4);
function dopic(imgName) {
if (ns3up || ie4up) {
imgOn = ("" + imgName);
document.mainpic.src = imgOn;
}
}
function doPreload()
{
var the_images = new Array(
"images/l-1.jpg",
"images/l-2.jpg",
"images/l-3.jpg",
"images/l-4.jpg",
"images/l-5.jpg",
"images/l-6.jpg");
preloadImages(the_images
);
}
function preloadImages(the_images_array) {
for(loop = 0; loop < the_images_array.length; loop++)
{
var an_image = new Image();
an_image.src = the_images_array[loop];
}
}
function change(html){
  description.innerHTML=html
}
function mailpage()
{
mail_str = "mailto:info@banderasnews.com?subject= Info request from BanderasNews.com website";
mail_str += "&body= Request information here. "; 
mail_str += " file reference: " + parent.location.href; 
location.href = mail_str;
}
