/****************************************************************

Interni - "interni.com.au"

Written by Robert Spriggs for CanvasDesign, (c)2007 Robert Spriggs and Canvas Design, all rights reserved

The code will remain the copyright of Robert Spriggs and Cavas Design, but may be freely modified
for the Interni website only (currently interni.com.au),
or further developed for that website only, without additional permission.

The code will only be used on one server to host one domain's site at any
one time and will not be resold (unless sold as part of the website and services,
in which case this copyright condition continues and is passed to the new owner)
or made publicly available.

Robert Spriggs and Canvas Design reserves the right to use the code elsewhere, but will not divulge
that the code is used for the Interni site or make the
code publicly available.

No part of this copyright message may be edited or removed.

*****************************************************************/

var images = new Array();

function flippics(cRef, cName, cText) {
  var Obj;
  var tempImage;
  if (document.getElementById) {
    Obj1 = document.getElementById("galtext");
    if (Obj1) {
      Obj1.innerHTML = 'Loading image ' + htmlentities(cName);
    }
    tempImage = new Image();
    tempImage.src="image.php?l=l&o=" + cRef;
    Obj2 = document.getElementById("MasterImage");
    if (Obj2) {
      Obj2.src="image.php?l=l&o=" + cRef;
      Obj2.alt=cName;
    }
    if (Obj1) {
      Obj1.innerHTML = htmlentities(cText);
    }
  }
  return false;
}

function htmlentities(str) {
    var i, len, char;
    var output = '';
    len = str.length;
    for(i=0; i<len; i++){
        char = str.charCodeAt(i);
        if( (char>47 && char<58)||(char>62 && char<127) ){
            output += str.charAt(i);
        }else{
            output += "&#" + char + ";";
        }
    }
    return output;
}

