<!-- The JavaScript Source!! http://javascript.internet.com -->

var theImage=new Array();
theImage[0]="/home/images/center_rotate/center_summerfall10reg.jpg";
//theImage[0]="/home/images/center_rotate/center_web_survey.jpg";

var theLink=new Array()
theLink[0]="http://www2.estrellamountain.edu/sch/";
//theLink[0]="http://www1.estrellamountain.edu/";

var i=0;
var l=theImage.length;
var preBuffer=new Array();
for (i=0; i<l; i++)
{
   preBuffer[i]=new Image();
   preBuffer[i].src=theImage[i];
}
var whichImage=Math.round(Math.random()*(l-1));

function showImage()
{
 document.write("<img src='" + theImage[whichImage] + "' border='0'>");
}

function next()
{
 whichImage++;
 if (whichImage<=2)
 {
  document.images.picture.src=theImage[whichImage];
 }
 else first();
}

function first()
{
 whichImage = 0;
 document.images.picture.src=theImage[whichImage];
}

function linkto()
{
 window.location=theLink[whichImage];
}

function popupto()
{
 //winpops=window.open(theLink[whichImage],"newpopup","width=800,height=600,status,scrollbars,resizable");
 winpops=window.open(theLink[whichImage],"newpopup","");
}

