var newWin = null;
function popWindow(url, windowType) {
	var xPos, yPos;
	switch (windowType) {
		case 'rpl':
			winFeatures='width=730,height=510,scrollbars=yes'; xPos = 20; yPos = 20;
		break;
	}
	newWin=window.open(url, windowType, winFeatures);
	newWin.moveTo(xPos, yPos);
	newWin.focus();
}