var prev_id = null;

	function showPhoto (photo,id) {
		img = new Image; 
		img.src=photo		
		
		if (self.innerWidth)
		{
			frameWidth = self.innerWidth;
			frameHeight = self.innerHeight;
		}
		else if (document.documentElement && document.documentElement.clientWidth)
		{
			frameWidth = document.documentElement.clientWidth;
			frameHeight = document.documentElement.clientHeight;
		}
		else if (document.body)
		{
			frameWidth = document.body.clientWidth;
			frameHeight = document.body.clientHeight;
		}



		if (document.getElementById(id).style.display=='block') {
			document.getElementById(id).style.display='none';
			document.getElementById(id+'_pic').style.backgroundColor='#dee2e5';
			document.getElementById(id+'_txt').style.backgroundColor='transparent';
		}
		else {

			if (prev_id != null) {
				document.getElementById(prev_id).style.display='none';
				document.getElementById(prev_id+'_pic').style.backgroundColor='#dee2e5';
				document.getElementById(prev_id+'_txt').style.backgroundColor='transparent';
			}


			document.getElementById(id).style.display='block';
			document.getElementById(id).style.position='absolute';
			document.getElementById(id).style.left=frameWidth-img.width-50+'px';
			document.getElementById(id).style.marginTop='-220px';

			document.getElementById(id).style.backgroundColor='#A6C4D7';
			document.getElementById(id+'_pic').style.backgroundColor='#A6C4D7';
			document.getElementById(id+'_txt').style.backgroundColor='#A6C4D7';

			prev_id=id;
		}
	}
	

