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