function keyPressHandler(e) {
	if (e.keyCode == 27)
	{
		if (dojo.byId('background_element') != null)
		{
			dojo.byId('background_element').style.display = 'none';
			if (dojo.isIE)
				dojo.byId('doc_html').style.overflow = 'auto';
			else
				dojo.body().style.overflow = 'auto';
		}
	}

	if ((typeof(photos) != "undefined") && (typeof(photo_index) != "undefined") && (photos != []))
	{
		if (e.keyCode == 37)
		{
			if (photo_index > 0)
			{
				photo_index--;
				SetImage(photo_index);
			}
		}
		if (e.keyCode == 39)
		{
			if (photo_index < (photos.length - 1))
			{
				photo_index++;
				SetImage(photo_index);
			}
		}
	}

	if ((typeof(pdf_image_index) != "undefined") && (typeof(pdf_max_image_index) != "undefined") && (pdf_max_image_index > 0))
	{
		if (e.keyCode == 37)
			pdf_setPdf('pred');
		else
		if (e.keyCode == 39)
			pdf_setPdf('next');
	}
}

