var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name','height=400,width=500,left=100,top=100,resizable=no,scrollbars=yes,status=yes');
	if (window.focus) {newwindow.focus()}
}