/*--JavaScript function that changes images dynamically*/

	function chooseImg() {
		ImgChg = new Array("images/tn_Xiamen1.jpg","images/tn_Xiamen2.jpg","images/tn_Xiamen3.jpg","images/tn_Xiamen4.jpg");
		imgCt = ImgChg.length; 	
		if (document.images) {
		randomNum = Math.floor((Math.random() * imgCt));
		document.images["ImgDis"].src = ImgChg[randomNum];
		}
	}
	
		function chooseImg2() {
		ImgChg = new Array("images/tn_Xiamen6.jpg","images/tn_Xiamen7.jpg","images/tn_Xiamen8.jpg","images/tn_Xiamen9.jpg");
		imgCt = ImgChg.length; 	
		if (document.images) {
		randomNum = Math.floor((Math.random() * imgCt));
		document.images["ImgDis2"].src = ImgChg[randomNum];
		}
	}
	
		function chooseImg3() {
		ImgChg = new Array("images/IMG010_thumbnail.jpg","images/IMG011_thumbnail.jpg","images/IMG008_thumbnail.jpg","images/IMG013_thumbnail.jpg","images/IMG014_thumbnail.jpg");
		imgCt = ImgChg.length; 	
		if (document.images) {
		randomNum = Math.floor((Math.random() * imgCt));
		document.images["ImgDis3"].src = ImgChg[randomNum];
		}
	}
	
	function chooseImg4() {
		ImgChg = new Array("images/IMG015_thumbnail.jpg","images/IMG017_thumbnail.jpg","images/IMG018_thumbnail.jpg","images/IMG004_thumbnail.jpg","images/IMG021_thumbnail.jpg");
		imgCt = ImgChg.length; 	
		if (document.images) {
		randomNum = Math.floor((Math.random() * imgCt));
		document.images["ImgDis4"].src = ImgChg[randomNum];
		}
	}	
	
/*end of JavaScript function that changes images dynamically*/


//pop up window function//

	
function windowOpener(url) 
	{
		newWindow = window.open(url, 'newin', 'scrollbars=no,resizable=yes,status=no,width=600,height=500,left=300px,top=275px'); 
		newWindow.focus();
	}
//end of pop up window function//

