var newwindow;
function popupTopic(url)
{
	newwindow=window.open(url,'name','height=600,width=400,resizable=yes,scrollbars=yes,location=no,toolbar=no,');
	if (window.focus) {newwindow.focus()}
}
