myPixPath = "http://www.usaction.org/atf/cf/{B61F1B77-C265-416B-83EA-800FB44717CB}/homephoto";

myPix = new Array(  myPixPath + "01.jpg",
					myPixPath + "02.jpg",
					myPixPath + "03.jpg",
					myPixPath + "04.jpg",
					myPixPath + "05.jpg",
					myPixPath + "06.jpg",
					myPixPath + "07.jpg",
					myPixPath + "08.jpg",
					myPixPath + "09.jpg",
					myPixPath + "10.jpg",
					myPixPath + "11.jpg"); 

imgCt = myPix.length;

function choosePic()
{ 
	if (document.images) 
		{randomNum = Math.floor((Math.random()*imgCt)); 
	document.myPicture.src=myPix[randomNum]; } 
} 






function NewWindow(mypage, myname) {
	winprops = 'toolbar=1,scrollbars=1,location=1,status=1,menubar=1,resizable=1,width=835,height=600,left=10,top= 10';
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
