
<!--
var picLink = "";


ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false

now= new Date();
Day=now.getDate();
month=1+now.getMonth();

function rand(numOfPics){
 return Math.floor(Math.random()*numOfPics + 1);
}

// this function is used to select the javascript file that lies
// at the server side. 
 picNum = rand(10);
 
 picLink ='/images/index/'+picNum+'.jpg' ;




function getURL(){
 return picLink;
}

function load(page) {
	if (ns4) document.textLayer.src = page
	else if (ie4) parent.textFrame.document.location = page
}

function gotoPage(pageURL){
 location.replace(pageURL);
}


//-->


