function swap(origImageId, rollImagePath)
{
	document.getElementById(origImageId).src = rollImagePath;
}
function doubleSwap(origImage1Id, origImage2Id, rollImage1Path, rollImage2Path)
{
	document.getElementById(origImage1Id).src = rollImage1Path;
	document.getElementById(origImage2Id).src = rollImage2Path;
}

function tripleSwap(origImage1Id, origImage2Id, origImage3Id, rollImage1Path, rollImage2Path, rollImage3Path)
{
	document.getElementById(origImage1Id).src = rollImage1Path;
	document.getElementById(origImage2Id).src = rollImage2Path;
	document.getElementById(origImage3Id).src = rollImage3Path;
}

function openImage(imagePath, picWidth, picHeight)
{
	var win = window.open(imagePath, '_blank', 'width=' + picWidth + ',height=' + picHeight + ',status=yes,toolbar=no,menubar=no,location=no,resizable=no');
}
