function fetchPage(theAction) {
  var theObject = document.forms['siteActionForm'];
  theObject.elements['theAction'].value = theAction;
  theObject.submit();
}

function fetchAction(theAction, contentId) {
  var theObject = document.forms['siteActionForm'];
  theObject.elements['contentId'].value = contentId;
  theObject.elements['theAction'].value = theAction;
  theObject.submit();
}

function fetchTemplate(theAction, templateName, contentId) {
  var theObject = document.forms['siteActionForm'];
  theObject.elements['contentId'].value = contentId;
  theObject.elements['templateName'].value = templateName;
  theObject.elements['theAction'].value = "get" + theAction + "Template";
  theObject.submit();
}

rollOver = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >=3)) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)));

loaded = 0;
                
function loadImages() {
  if (rollOver) {		                              
    image1on = new Image();
    image1on.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/politics_on.gif";
    image2on = new Image();
    image2on.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/royalty_on.gif";
    image3on = new Image();
    image3on.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/sport_on.gif";
    image4on = new Image();
    image4on.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/film_on.gif";
    image5on = new Image();
    image5on.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/music_on.gif";
    image6on = new Image();
    image6on.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/tvshowbiz_on.gif";
    image7on = new Image();
    image7on.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/scas_logo_on.jpg";
    image8on = new Image();
    image8on.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/form_on.gif";

    // --------------------------------
    image1off = new Image();
    image1off.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/politics_off.gif";
    image2off = new Image();
    image2off.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/royalty_off.gif";
    image3off = new Image();
    image3off.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/sport_off.gif";
    image4off = new Image();
    image4off.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/film_off.gif";
    image5off = new Image();
    image5off.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/music_off.gif";
    image6off = new Image();
    image6off.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/tvshowbiz_off.gif";
    image7off = new Image();
    image7off.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/scas_logo_off.jpg";
    image8off = new Image();
    image8off.src = "http://www.scottishcartoons.com/caricaturefactory/assets/navigation/form_off.gif";
    loaded=1;
  }
}
function switchOn(imageName) {
  if (loaded==1) {
    imgOn = eval(imageName + "on.src");
    document [imageName].src = imgOn;
  }
}
function switchOff(imageName) {
  if (loaded==1) {
    imgOff = eval(imageName + "off.src");
    document [imageName].src = imgOff;
  }
}
loadImages();

function popUp() {
	windowTwo = window.open("includes/copyright.htm", "popframe", "toolbar=no,location=no,status=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,width=400,height=204");
	windowTwo.focus();
}
