function pop1(url, name, height, width, scrollbars)
{

    
	var popwin;
	"status=no,resizable=no,scrollbars=no";
	
	    var opts = 
        "status=no,resizable=no,scrollbars=no";


	popwin = window.open("", name,'height=420,width=420, screenX=420,screenY=420,top=200,left=300',  opts );	
	popwin.focus();
	
	popwin.location = url;
	
}
