<!--
function popUp(type, other) {
	
	var baseUrl = '/_popup.php?';
	var baseParams = 'menubar=0, resizable=1, width=800, height=650';
	switch (type) {
		case 'page':
			baseUrl += 'poppid='+other;
			baseParams += ',scrollbars=1';
			break;
		case 'video':
			baseUrl += 'popvid='+other;
			break;
	}
	var winpop = window.open(baseUrl,'winpop',baseParams);
	winpop.focus();
}
//-->