var newwindow;
function popup(url)
{
	newwindow=window.open(url,'help','height=480,width=300, resizable=yes,scrollbars=yes,toolbar=no,status=no,location=no,menubar=no');
	if (window.focus) {newwindow.focus()}
}
