// popup picture window support for PB photo album
var picWindow = null;

function popPic(img,txt) {
	document.theForm.img.value=img;
	document.theForm.txt.value=txt;
	if (picWindow == null || picWindow.closed) {
		picWindow = window.open('img/popPic.html', 'PicWin', 
		'toolbar=0,statusbar=0,menubar=0,width=600,height=500,resizable=1,left = 50,top = 30');
	} else {
		picWindow.getPic();
	}
	if (picWindow != null) {
		if (picWindow.opener != null) picWindow.opener = self;
		window.name = 'albumnWindow';
		picWindow.focus();
	}
}


