	function getRand(onPage)
	{
	numArray = null;
	
		
		if(onPage == 'partner')
		{
			numArray = new Array("01","02","03","04","05","06","07","08","09","10","11","12","13","14");
		}
		
				
		//randomly load an image, using the var randNum
		//maxNum is the highest numbered image within the images directory
		
		
			var maxNum = numArray.length;
			var randNum = (Math.floor(Math.random() * maxNum));
			
			randNum = numArray[randNum];
			
		return randNum;
	}


	function getfocus(){
		window.focus();
	}	
