function iPop(iImg, iAcct) {
//opens a popup window for editing profile image
	var sWin = "editImg.asp?img=" + iImg + "&acctId=" + iAcct;
	var sOpt = "width=" + (screen.width - 50) + ",height=" + (screen.height - 100) + ",top=0,left=0,scrollbars=1,status=1,resizable=1";
	window.open(sWin, "popup", sOpt);
}

function dConf() {
//confirms profile action (delete, post)
	return confirm('Are you sure?');
}
