function pop(url, name, height, width, scrollbars, resizable)
{

    
	var popwin;
	"status=yes,resizable=yes,scrollbars=no";
	
	    var opts = 
        "status=yes,resizable=yes,scrollbars=no";


	popwin = window.open("", name, 'height=620, width=650, scrollbars=no resizable=yes' );	
	popwin.focus();
	
	popwin.location = url;
	
}
