if (document.images) {
  image30off = new Image(); image30off.src = "images/pixel-black.gif";
  image31on = new Image(); image31on.src = "images/link-on.gif";
  image32on = new Image(); image32on.src = "images/link-off.gif";
  image33on = new Image(); image33on.src = "images/home-on2.gif";
  image33off = new Image(); image33off.src = "images/home-off2.gif";
  }

function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = "images/link-on.gif";
    }
  }
function turnOff(imageName) {
  if (document.images) {
    document[imageName].src = "images/pixel-black.gif";
    }
  }
function turnRed(imageName) {
  if (document.images) {
    document[imageName].src = "images/link-off.gif";
    }
  }
function turnHomeOn(imageName) {
  if (document.images) {
    document[imageName].src = "images/home-on2.gif";
    }
  }
function turnHomeOff(imageName) {
  if (document.images) {
    document[imageName].src = "images/home-off2.gif";
    }
  }

function checkwords(){
  if (document.images){
    var temp=document.thename.AdText.value.split(" ")
    document.thename.WordCount.value=eval(temp.length)
  if (eval(temp.length) < 26) {
    document.thename.AdCost.value="40" }
  else {document.thename.AdCost.value=(40 + (eval((temp.length) - 25) * 1.5));}
return false } }

//-->
