function winPopHand(imgSrc, imgTitle)
{
	window.status = 'WildStang 2003 Robot Hand Sketch';
	strAttributes = 'directories=no,location=no,menubar=no,scrollbars=yes,status=yes,toolbar=no,resizable=yes,width=620';
	popUp = window.open('', 'popupwinhand', strAttributes);
	popUpDoc = popUp.document;
	popUpDoc.open("text/html", "replace");
	popUpDoc.write('<HTML><HEAD><TITLE>&nbsp;&nbsp;click on image to close&nbsp;&nbsp;&nbsp;</TITLE></HEAD><BODY style="margin: 1px; background: white;"><a href="#" onClick="self.close()"><img src="' + imgSrc + '" name="imgItemPic" style="border: none" /></a></BODY></HTML>');
	popUpDoc.close();
	popUp.focus()
}

function winPopPart(imgSrc, imgTitle)
{
	window.status = 'WildStang 2003 Robot Image';
	strAttributes = "scrolling=no,width=610,height=430";
	popUp = window.open('', 'popupwinpart', strAttributes);
	popUpDoc = popUp.document;
	popUpDoc.open("text/html", "replace");
	popUpDoc.write('<HTML><HEAD><TITLE>&nbsp;&nbsp;click on image to close&nbsp;&nbsp;&nbsp;</TITLE></HEAD><BODY style="margin: 0px; background: black;"><a href="#" onClick="self.close()"><img src="' + imgSrc + '" name="imgItemPic" style="border: none" /></a></BODY></HTML>');
	popUpDoc.close();
	popUp.focus()
}

function winPopAssem(imgSrc, imgTitle)
{
	window.status = 'WildStang 2003 Robot Image';
	strAttributes = "scrolling=no,width=767,height=529";
	popUp = window.open('', 'popupwinassem', strAttributes);
	popUpDoc = popUp.document;
	popUpDoc.open("text/html", "replace");
	popUpDoc.write('<HTML><HEAD><TITLE>&nbsp;&nbsp;click on image to close&nbsp;&nbsp;&nbsp;</TITLE></HEAD><BODY style="margin: 0px; background: black;"><a href="#" onClick="self.close()"><img src="' + imgSrc + '" name="imgItemPic" style="border: none" /></a></BODY></HTML>');
	popUpDoc.close();
	popUp.focus()
}

function winPopDraw(imgSrc, imgTitle)
{
	window.status = 'WildStang 2003 Robot Inventor Drawing';
	strAttributes = 'directories=no,location=no,menubar=no,scrollbars=yes,status=yes,toolbar=no,resizable=yes';
	popUp = window.open('', 'popupwindraw', strAttributes);
	popUpDoc = popUp.document;
	popUpDoc.open("text/html", "replace");
	popUpDoc.write('<HTML><HEAD><TITLE>&nbsp;&nbsp;click on image to close&nbsp;&nbsp;&nbsp;</TITLE></HEAD><BODY style="margin: 1px; background: black;"><a href="#" onClick="self.close()"><img src="' + imgSrc + '" name="imgItemPic" style="border: none" /></a></BODY></HTML>');
	popUpDoc.close();
	popUp.focus()
}