function pop1(url, name, height, width, scrollbars)
{

    
	var popwin;
	"status=yes,resizable=yes,scrollbars=yes";
	
	    var opts = 
        "status=yes,resizable=yes,scrollbars=yes";


	popwin = window.open("", name,'height=400,width=500, screenX=400,screenY=400,top=20,left=510',  opts );	
	popwin.focus();
	
	popwin.location = url;
	
}
