function includeImg(){
	linkList = new Array(
		new Array("","img/01.gif","Photo"),
		new Array("","img/02.jpg","Photo"),
		new Array("","img/03.jpg","Photo"),
		new Array("","img/04.jpg","Photo")
)
	rndNum = Math.floor(Math.random() * linkList.length);
	newWin = 1;
	trgetNam = newWin ? "_blank" : "_top";


	document.write("<img src='" + linkList[rndNum][1] + "' alt='" + linkList[rndNum][2] + "' border='0' width='522' height='285'>");


}
