function showImage(imgName,orient)
{

	var fileName = imgName + ".jpg" ;

	var x = 510 ;
	var y = 365 ;
	var x_actual = 430 ;
	var y_actual = 277 ;

	if ( orient == "V" )
	{
		x = 365 ;
		y = 510 ;
		x_actual = 277 ;
		y_actual = 430 ;
	}

	var winParams = "dependent=yes,directories=no,height=" + y + ",width=" + x + ",personalbar=no,resizable=no,toolbar=no,status=no,scrollbars=no,fullscreen=no" ;
	var winName =  orient + "imgWindow" ;

	var bodyText = '<html><head><title>Earth Healing Day - A Picture</title><link rel=STYLESHEET href="../../style.css"></head>' ;

	bodyText += '<body bgcolor="#d0a2d0">' ;
	bodyText += '<table border=0 width=100% height=100%><tr valign=center><td><center>' ;
	bodyText += '<img src="' + fileName + '" border=0 alt="EHF Gallery Image" height=' + y_actual + ' width=' + x_actual + '>' ;
	bodyText += '</td></tr></table>' ;
	bodyText += '</body></html>' ;

	var rfmWindow = window.open ( "", winName, winParams ) ;

	rfmWindow.document.open () ;
	rfmWindow.document.write ( bodyText ) ;
	rfmWindow.document.close () ;
	rfmWindow.focus() ;

}
