/*   All Javascript code is Copyright 2010 HunterGD @ HunterGD.com   *
*  Do not use or borrow my code without giving credit to me, at the  *
*  least, please leave this header with the code.                   */

function displayImg(targetPic,orientation)
	{
	var picViewer;
	var settings = "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=800,height=800,screenX=100,screenY=0,left=100,top=0";
	picViewer = window.open("images/" + targetPic, "picViewer", settings);
	if (window.focus) {picViewer.focus()}
	}