function popTellaFriend(){
newWindow=window.open('tellafriend.cfm','newwin','height=200,width=170')
}

myPix = new Array()
	myPix[1]="images/random1.jpg"
	myPix[2]="images/random2.jpg"
	myPix[3]="images/random3.jpg"
	myPix[4]="images/random4.jpg"
	myPix[5]="images/random5.jpg"
	
	function switchMe(){
		now=new Date()
		num=(now.getSeconds())%5
		num=num+1
		document.images['pix'].src=myPix[num]
	}
	
		function popWin(dest){
	newWin2=window.open(dest,'newwin','width=684,height=513,resize=yes,scrollbars=yes,screenX=0,screenY=0,top=0,left=0')
	newWin2.focus()
	}