function swap (imgID, imgNew) {
	CreateImage = new Image();
	CreateImage = imgNew;
	window.document.images[imgID].src = imgNew;
}
function openWin ( strUri, intWidth, intHeight ) {
	window.open(strUri,"photoview");
}
