<!-- hide from old browsers
// copyright HuntSpace 2001
// Open a link in a new window.
var se=document.referrer;
if(se==""){location.href="http://www.ausdomain.net";}

function openNew(source){
  newWin = window.open(source);

}
// loads random mages.
function newImages(){
picNum = new Array(6);
var rndNum=0;
var i=0;
var n=0;
  while(i<7){
    rndNum=Math.floor((Math.random()*24))+1;
    for(n=1; n<7; n++){
      if(rndNum==picNum[n]){
            i=n;
            break;
        }
        else{
            picNum[i]=rndNum;
        }
    }
    i++;
  }

    document.myPic1.src="./images/sm"+picNum[1]+".jpg";
    document.myPic2.src="./images/sm"+picNum[2]+".jpg";
    document.myPic3.src="./images/sm"+picNum[3]+".jpg";
    document.myPic4.src="./images/sm"+picNum[4]+".jpg";
    document.myPic5.src="./images/sm"+picNum[5]+".jpg";
    document.myPic6.src="./images/sm"+picNum[6]+".jpg";
}

// stop hiding -->




