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/t1.jpg",
"images/t2.jpg",
"images/t4.jpg",
"images/t5.jpg",
"images/t6.jpg",
"images/t7.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 selectCode(f){
document.forms.Giblets.elements[0].focus();
document.forms.Giblets.elements[0].select();
}
offMessage = "Reel In The Big Ones With The Pros!"
function boxOn(which,message){
if (document.all||document.getElementById){
if (document.getElementById) {document.getElementById("Message").innerHTML = message}
else {Message.innerHTML = message}
}
}
function boxOff(which){
if (document.all||document.getElementById){
if (document.getElementById) {document.getElementById("Message").innerHTML = offMessage}
else {Message.innerHTML = offMessage}
}
}
