function popup(url, name, scrollbars)
{
    
	var popwin;
	"status=yes,resizable=yes,scrollbars=yes";
	
	    var opts = 
        "status=yes,resizable=yes,scrollbars=yes";
	popwin = window.open("", name,'screenX=100,screenY=200,top=20,left=200,scrollbars=yes', opts );	
	popwin.focus();
	
	popwin.location = url;
	
}
