<!--


function popup(myUrl, name) {
	var h=510; var w=490;
	var leftpos = (screen.width - w) / 2;
	var toppos = (screen.height - h) / 2;
	winconfig = 'height='+h+',width='+w+',left='+leftpos+',top='+toppos+', scrollbars=yes, resizable=yes, status=no, toolbar=no';
	win = window.open(myUrl, name, winconfig);
	if (parseInt(navigator.appVersion) >= 4)
		win.window.focus();
}

//-->


